Beispiel #1
0
 /// <summary>
 /// Default constructer
 /// </summary>
 public HomeworkController(IDataSetDatabaseService dataSetDatabaseService, ILoggingService loggingService,
                           IMemoryCache memoryCache, IHealthAccountService healthAccountService, IApplicationLinksService applicationLinksService)
     : base(loggingService)
 {
     DataSetDatabaseService  = dataSetDatabaseService;
     MemoryCache             = memoryCache;
     HealthAccountService    = healthAccountService;
     ApplicationLinksService = applicationLinksService;
 }
Beispiel #2
0
 /// <summary>
 /// Default constructer
 /// </summary>
 public AWPAccountController(ILoggingService loggingService, IHealthAccountService healthAccountService)
     : base(loggingService)
 {
     HealthAccountService = healthAccountService;
 }