Esempio n. 1
0
 public SellerService(IFullStackRepository repo)
 {
     this._repo = repo;
 }
Esempio n. 2
0
 public LocationService(IFullStackRepository repo)
 {
     this._repo = repo;
 }
Esempio n. 3
0
 public UserService(IFullStackRepository repo, IOptions <AppSettings> appSettings)
 {
     this._repo        = repo;
     this._appSettings = appSettings.Value;
 }
Esempio n. 4
0
 public AdvertService(IFullStackRepository repo)
 {
     this._repo = repo;
 }
Esempio n. 5
0
 public UserService(IOptions <AppSettings> appSettings, IFullStackRepository repo)
 {
     _appSettings = appSettings.Value;
     this._repo   = repo;
 }