Beispiel #1
0
 public UserService()
 {
     this._UserBus = new UserBUS();
 }
Beispiel #2
0
 public UserController(IOptions <AppSettings> appSettings, IUserBUS userBUS, IRoleBUS _roleBUS)
 {
     this._userBUS = userBUS;
     this._roleBUS = _roleBUS;
     _appSettings  = appSettings.Value;
 }