コード例 #1
0
 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;
 }