コード例 #1
0
 public LessonService(IMapper mapper,
                      IMediatorHandler bus,
                      IUnitOfWork unitOfWork,
                      IModuleService moduleService,
                      IFaseService faseService,
                      ISpecialWeekService specialWeekService) : base(bus, unitOfWork)
 {
     _mapper             = mapper;
     _moduleService      = moduleService;
     _faseService        = faseService;
     _specialWeekService = specialWeekService;
 }
コード例 #2
0
ファイル: FaseController.cs プロジェクト: thiagoalexb/AEFWeb
 public FaseController(IFaseService faseService,
                       INotificationHandler <Notification> notifications) : base(notifications) =>
コード例 #3
0
 public FaseAppService(IFaseService faseService)
 {
     _faseService = faseService;
 }