24 lines
589 B
C#
24 lines
589 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Aspose.Cells;
|
|
using JNPF.DependencyInjection;
|
|
using JNPF.DynamicApiController;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Tnb.ProductionPlanMgr
|
|
{
|
|
[ApiDescriptionSettings(Tag = "ProductPlanMgr", Name = "WorkOrderScheduling", Order = 700)]
|
|
[Route("api/production/[controller]")]
|
|
public class WorkOrderSchedulingService: IDynamicApiController, ITransient
|
|
{
|
|
|
|
public WorkOrderSchedulingService()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|