1
huangxiaoqiang
4 小时以前 a1f7a7a68d23f7b9de7c4237bf167fa4808fb20d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using WIDESEA_IServices;
using WIDESEA_Model.Models.Basic;
using WIDESEAWCS_BasicInfoRepository;
 
namespace WIDESEAWCS_BasicInfoService
{
    public partial class Dt_InventoryRecordService : ServiceBase<Dt_InventoryRecord, IDt_InventoryRecordRepository>, IDt_InventoryRecordService
    {
        private readonly ISys_ConfigService _sys_ConfigService;
 
        public Dt_InventoryRecordService(IDt_InventoryRecordRepository BaseDal, ISys_ConfigService sys_ConfigService) : base(BaseDal)
        {
            _sys_ConfigService = sys_ConfigService;
        }
    }
}