コード例 #1
0
ファイル: Service.cs プロジェクト: VitViBest/Vlad
 public Service(IMainUnitOfWork unitOfWork, IMapperDTO mapper)
 {
     _IOF       = unitOfWork;
     _MapperDTO = mapper;
 }
コード例 #2
0
ファイル: UserService.cs プロジェクト: VitViBest/Vlad
 public UserService(IMainUnitOfWork unit, IMapperDTO mapper)
 {
     _Unit   = unit;
     _Mapper = mapper;
 }
コード例 #3
0
 public StoreService(IMainUnitOfWork unit, IMapperDTO mapper)
 {
     _IOF    = unit;
     _Mapper = mapper;
 }