public UsersService(ISoftUniStoreData data) : base(data)
 {
 }
Beispiel #2
0
 public BaseService(ISoftUniStoreData data)
 {
     this.data = data;
 }
Beispiel #3
0
 public HomeService(ISoftUniStoreData data) : base(data)
 {
 }
 public UsersController(ISoftUniStoreData data)
 {
     this.service = new UsersService(data);
     this.manager = new SignInManager(data);
 }
 public GenericService(ISoftUniStoreData data) : base(data)
 {
 }
 public SignInManager(ISoftUniStoreData data)
 {
     this.data = data;
 }
Beispiel #7
0
 public GenericController(ISoftUniStoreData data)
 {
     this.service = new GenericService(data);
     this.manager = new SignInManager(data);
 }
Beispiel #8
0
 public HomeController(ISoftUniStoreData data)
 {
     this.service = new HomeService(data);
     this.manager = new SignInManager(data);
 }