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