public WeatherForecastController(ICurrentDateServiceFactory currentDateServiceFactory, IUserService userService)
 {
     this.systemDateService = currentDateServiceFactory.GetCurrentDateService();
     this.userService       = userService;
 }
示例#2
0
 public HomeController(ICurrentDateServiceFactory currentDateServiceFactory, IUserService userService)
 {
     this.currentDateService = currentDateServiceFactory.GetCurrentDateService();
     this.userService        = userService;
 }
示例#3
0
 public IndexModel(ICurrentDateServiceFactory currentDateServiceFactory, IUserService userService)
 {
     this.currentDateService = currentDateServiceFactory.GetCurrentDateService();
     this.userService        = userService;
 }