public WeatherForecastController(ICurrentDateServiceFactory currentDateServiceFactory, IUserService userService)
 {
     this.systemDateService = currentDateServiceFactory.GetCurrentDateService();
     this.userService       = userService;
 }
Exemplo n.º 2
0
 public HomeController(ICurrentDateServiceFactory currentDateServiceFactory, IUserService userService)
 {
     this.currentDateService = currentDateServiceFactory.GetCurrentDateService();
     this.userService        = userService;
 }
Exemplo n.º 3
0
 public IndexModel(ICurrentDateServiceFactory currentDateServiceFactory, IUserService userService)
 {
     this.currentDateService = currentDateServiceFactory.GetCurrentDateService();
     this.userService        = userService;
 }