| | |
| | | using WIDESEAWCS_Core.BaseServices; |
| | | using WIDESEAWCS_Core.Enums; |
| | | using WIDESEAWCS_DTO.BasicInfo; |
| | | using WIDESEAWCS_DTO.TaskInfo; |
| | | using WIDESEAWCS_Model.Models; |
| | | |
| | | namespace WIDESEAWCS_IBasicInfoService |
| | | { |
| | | public interface IOrderDetailsService : IService<OrderDetails> |
| | | { |
| | | int GetOrderDetails(string barcode, List<int> useableStations); |
| | | int GetOrderDetails(string barcode, List<int> useableStations, out ProductInfoDTO productInfo); |
| | | ToMesBarcRes? ToMesBarc(int barcode); |
| | | |
| | | ToMesBarcRes? ToMes(string barcode, int processId); |
| | | |
| | | OrderInfo GetOrderInfoByBarcode(string barcode); |
| | | } |
| | | } |