コード例 #1
0
 public MascotaController(IMascotaRepository _mascota, ICookieAuthService _cookieAuthService, IHistoriaRepository _historiaClinica, IUsuarioRepository _usuario)
 {
     this._usuario           = _usuario;
     this._mascota           = _mascota;
     this._historiaClinica   = _historiaClinica;
     this._cookieAuthService = _cookieAuthService;
 }
コード例 #2
0
ファイル: ClientesController.cs プロジェクト: scampos79/VetS
 public ClientesController(IMapper mapper, IClienteRepository repository, IMascotaRepository mascotaRepository, IUnitOfWork unitOfWork)
 {
     this.mapper            = mapper;
     this.repository        = repository;
     this.mascotaRepository = mascotaRepository;
     this.unitOfWork        = unitOfWork;
 }
コード例 #3
0
 public ConsultaController(
     IConsultaService consultaService,
     IEmpleadoRepository empleadoRepository,
     IMascotaRepository mascotaRepository
     )
 {
     _consultaService    = consultaService;
     _empleadoRepository = empleadoRepository;
     _mascotaRepository  = mascotaRepository;
 }
コード例 #4
0
 public HistoriasClinicasController(IMapper mapper,
                                    IHistoriaClinicaRepository historiaClinicaRepository,
                                    IMascotaRepository mascotaRepository,
                                    IUnitOfWork unitOfWork)
 {
     this.mapper = mapper;
     this.historiaClinicaRepository = historiaClinicaRepository;
     this.mascotaRepository         = mascotaRepository;
     this.unitOfWork = unitOfWork;
 }
コード例 #5
0
 public MascotaService(
     IMascotaRepository mascotaRepository
     )
 {
     _mascotaRepository = mascotaRepository;
 }
コード例 #6
0
 public MascotaAppService(IMascotaRepository mascotaRepository, IMapper mapper) : base(mascotaRepository, mapper)
 {
     _mascotaRepository = mascotaRepository;
 }