| | |
| | | using System.Linq; |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseServices; |
| | | using WIDESEA_DTO.SquareCabin; |
| | | using WIDESEA_Model.Models; |
| | | using static WIDESEA_DTO.SquareCabin.TowcsDto; |
| | | |
| | | namespace WIDESEA_IWMsInfoServices |
| | | { |
| | | public interface IInventoryInfoService : IService<Dt_InventoryInfo> |
| | | { |
| | | IRepository<Dt_InventoryInfo> Repository { get; } |
| | | /// <summary> |
| | | /// è·ååºåä¿¡æ¯ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | WebResponseContent GetInventory(); |
| | | |
| | | /// <summary> |
| | | /// è·å临æçåç«åºåºå使¥è¦ |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | WebResponseContent GetExpiredAndlow(); |
| | | } |
| | | } |