Example #1
0
 public MascotaController(IMascotaRepository _mascota, ICookieAuthService _cookieAuthService, IHistoriaRepository _historiaClinica, IUsuarioRepository _usuario)
 {
     this._usuario           = _usuario;
     this._mascota           = _mascota;
     this._historiaClinica   = _historiaClinica;
     this._cookieAuthService = _cookieAuthService;
 }
Example #2
0
 public HistoriaController(IHistoriaRepository repo)
 {
     repository    = repo; //repository
     fileDirectory = bck.PathAddBackslash(fileDirectory);
 }
Example #3
0
 public VotoFacade(IVotoRepository repository, ICartaRepository cartaRepository, IHistoriaRepository historiaRepository) : base(repository)
 {
     this._cartaRepository    = cartaRepository;
     this._historiaRepository = historiaRepository;
 }