示例#1
0
 public RimsController(
     IRimsService rimsService,
     IFileSaver fileSaver, IIdentifierProvider identifierProvider,
     IStatisticsHubCorresponder statisticsHubCorresponder,
     IStatisticsService statisticsService)
 {
     this.rimsService               = rimsService;
     this.fileSaver                 = fileSaver;
     this.identifierProvider        = identifierProvider;
     this.statisticsHubCorresponder = statisticsHubCorresponder;
     this.statisticsService         = statisticsService;
 }
示例#2
0
 public HomeController(
     ITiresService tiresService,
     IRimsService rimsService,
     IRimsWithTiresService rimsWithTyresService,
     ICacheService cacheService,
     IStatisticsService statisticsService)
 {
     this.tiresService         = tiresService;
     this.rimsService          = rimsService;
     this.rimsWithTyresService = rimsWithTyresService;
     this.cacheService         = cacheService;
     this.statisticsService    = statisticsService;
 }