using DOAN.Model; using DOAN.Model.MES.base_.Dto; using DOAN.Model.MES.product; using DOAN.Model.MES.product.Dto; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Service.MES.product.IService { public interface IProWorkorderScheduleService : IBaseService { PagedInfo GetList(ProWorkorderQueryDto parm); List GetworkProcess(int WorkFkRouteCode); List GetworkStation(string WorkorderId, int WorkProcessID); int UpdateSelectedWorkstation(ProRelWorkorderLineBodyDto lineBodyDto); int DefaultSelected(string WorkorderId); } }