public GetStandardsListQueryHandler(
     ILogger <GetStandardsListQueryHandler> logger,
     IStandardsService standardsService)
 {
     _logger           = logger;
     _standardsService = standardsService;
 }
 public GetStandardsByIFateReferenceQueryHandler(
     ILogger <GetStandardsByIFateReferenceQueryHandler> logger,
     IStandardsService standardsService)
 {
     _logger           = logger;
     _standardsService = standardsService;
 }
Exemplo n.º 3
0
 public GetCoursesHandler(
     IStandardsService standardsService,
     IFrameworksService frameworksService,
     ILog logger)
 {
     _standardsService  = standardsService;
     _frameworksService = frameworksService;
     _logger            = logger;
 }
Exemplo n.º 4
0
 public GetStandardByIdQueryHandler(IStandardsService standardsService)
 {
     _standardsService = standardsService;
 }