| | |
| | | public partial class WarehouseService : ServiceBase<Dt_Warehouse, IWarehouseRepository>, IWarehouseService |
| | | { |
| | | private readonly ICacheService _cacheService; |
| | | private readonly IPalletTypeInfoRepository _palletTypeInfoRepository; |
| | | |
| | | public WarehouseService(IWarehouseRepository BaseDal,ICacheService cacheService, IPalletTypeInfoRepository palletTypeInfoRepository) : base(BaseDal) |
| | | public WarehouseService(IWarehouseRepository BaseDal,ICacheService cacheService) : base(BaseDal) |
| | | { |
| | | _cacheService = cacheService; |
| | | _palletTypeInfoRepository = palletTypeInfoRepository; |
| | | } |
| | | |
| | | public IWarehouseRepository Repository => BaseDal; |