Ejemplo n.º 1
0
 public OrdenServicioController(IOrdenServicioRepository ordenServicioRepository,
                                IUnitOfWork unitOfWork, IClienteRepository clienteRepository)
 {
     _ordenServicioRepository = ordenServicioRepository;
     _unitOfWork         = unitOfWork;
     _cliente_repository = clienteRepository;
 }
Ejemplo n.º 2
0
 public CitaController(ICitaRepository clienteRepository, ITecnicoRepository tecnicoRepository, ICitaTecnicoRepository citaTecnicoRepository, IOrdenServicioRepository ordenServicioRepository,
                       IUnitOfWork unitOfWork)
 {
     _citaRepository          = clienteRepository;
     _tecnicoRepository       = tecnicoRepository;
     _citaTecnicoRepository   = citaTecnicoRepository;
     _ordenServicioRepository = ordenServicioRepository;
     _unitOfWork = unitOfWork;
 }
 public OrdenServicioController(IOrdenServicioRepository ordenServicioRepository, ITecnicoRepository tecnicoRepository, IUnitOfWork unitOfWork)
 {
     _ordenServicioRepository = ordenServicioRepository;
     _tecnicoRepository       = tecnicoRepository;
     _unitOfWork = unitOfWork;
 }
 public TrabajoFormularioController(IFormularioRepository formularioRepository, IOrdenServicioRepository ordenServicioRepository, IUnitOfWork unitOfWork)
 {
     _formularioRepository    = formularioRepository;
     _ordenServicioRepository = ordenServicioRepository;
     _unitOfWork = unitOfWork;
 }