Пример #1
0
 public HomeController(ISoftStoreData data)
 {
     this.service = new HomeService(data);
 }
Пример #2
0
 public Service(ISoftStoreData data)
 {
     this.data          = data;
     this.signInManager = new SignInManager(data);
 }
 public UsersController(ISoftStoreData data)
 {
     this.service = new UsersService(data);
 }
 public GamesService(ISoftStoreData data) : base(data)
 {
 }
Пример #5
0
 public GamesController(ISoftStoreData data)
 {
     this.service = new GamesService(data);
 }
 public SignInManager(ISoftStoreData data)
 {
     this.data = data;
 }
 public HomeService(ISoftStoreData data)
     : base(data)
 {
 }
 public UsersService(ISoftStoreData data) : base(data)
 {
 }