コード例 #1
0
 public CalendarService(
     IGenericUnitOfWork genericUnitOfWork,
     ApplicationLogService applicationLogService, IDiObjectMapper mapper)
 {
     _genericUnitOfWork     = genericUnitOfWork;
     _applicationLogService = applicationLogService;
     _mapper = mapper;
 }
コード例 #2
0
 public BOCAService(IGenericUnitOfWork genericUnitOfWork,
                    ISharedService sharedService,
                    IListService listService,
                    ISetUpService setupService,
                    IEmailComposer emailComposer,
                    ApplicationLogService applicationLogService,
                    IDiObjectMapper mapper)
 {
     _genericUnitOfWork     = genericUnitOfWork;
     _sharedService         = sharedService;
     _listService           = listService;
     _setupService          = setupService;
     _emailComposer         = emailComposer;
     _applicationLogService = applicationLogService;
     _mapper = mapper;
 }