using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core; using WIDESEA_Core.BaseRepository; using WIDESEA_Core.BaseServices; using WIDESEA_Model.Models; using WIDESEA_Model.Models.Basic; namespace WIDESEA_IBasicService { public interface IMaterialExpirationDateService : IService { IRepository Repository { get; } WebResponseContent ReceiveMaterialExpirationDate(Dt_MaterialExpirationDate model, int operateType); } }