| | |
| | | using AutoMapper; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseRepository; |
| | | using WIDESEA_Core.BaseServices; |
| | | using WIDESEA_IStockService; |
| | | using WIDESEA_Model.Models; |
| | |
| | | { |
| | | public partial class StockInfo_HtyService : ServiceBase<Dt_StockInfo_Hty, IRepository<Dt_StockInfo_Hty>>, IStockInfo_HtyService |
| | | { |
| | | private readonly IMapper _mapper; |
| | | |
| | | public IRepository<Dt_StockInfo_Hty> Repository => BaseDal; |
| | | |
| | | public StockInfo_HtyService(IRepository<Dt_StockInfo_Hty> BaseDal, IMapper mapper) : base(BaseDal) |
| | | public StockInfo_HtyService(IRepository<Dt_StockInfo_Hty> BaseDal) : base(BaseDal) |
| | | { |
| | | _mapper = mapper; |
| | | } |
| | | } |
| | | } |