示例#1
0
文件: Service.cs 项目: VitViBest/Vlad
 public Service(IMainUnitOfWork unitOfWork, IMapperDTO mapper)
 {
     _IOF       = unitOfWork;
     _MapperDTO = mapper;
 }
示例#2
0
 public UserService(IMainUnitOfWork unit, IMapperDTO mapper)
 {
     _Unit   = unit;
     _Mapper = mapper;
 }
示例#3
0
 public StoreService(IMainUnitOfWork unit, IMapperDTO mapper)
 {
     _IOF    = unit;
     _Mapper = mapper;
 }