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