Beispiel #1
0
 public MascotaController(IMascotaRepository _mascota, ICookieAuthService _cookieAuthService, IHistoriaRepository _historiaClinica, IUsuarioRepository _usuario)
 {
     this._usuario           = _usuario;
     this._mascota           = _mascota;
     this._historiaClinica   = _historiaClinica;
     this._cookieAuthService = _cookieAuthService;
 }
Beispiel #2
0
 public AuthController(IUserRepository repository, ICookieAuthService cookieAuthService, IConfiguration configuration)
 {
     this.configuration     = configuration;
     this.repository        = repository;
     this.cookieAuthService = cookieAuthService;
 }
Beispiel #3
0
 public AuthController(IUsuarioRepository _usuario, ICookieAuthService _cookieAuthService)
 {
     this._usuario           = _usuario;
     this._cookieAuthService = _cookieAuthService;
 }