26 lines
717 B
C#
26 lines
717 B
C#
using DOAN.Model.MES.base_;
|
|
using DOAN.Model.MES.mm;
|
|
using DOAN.Model.MES.mm.Dto;
|
|
using DOAN.Service.group.IService;
|
|
using DOAN.Service.MES.mm.IService;
|
|
using Infrastructure.Attribute;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.MES.mm
|
|
{
|
|
[AppService(ServiceType = typeof(IMmPreparantTaskService), ServiceLifetime = LifeTime.Transient)]
|
|
public class MmPreparantTaskService : BaseService<MmPreparationTask>, IMmPreparantTaskService
|
|
{
|
|
public List<BaseWorkRoute> GetProcessRouteList()
|
|
{
|
|
return Context.Queryable<BaseWorkRoute>().Where(it=>it.Status==1).ToList();
|
|
}
|
|
|
|
|
|
}
|
|
}
|