public GestorPrecio() { diaAtencionDao = new RepositorioDiaAtencion(); tiempoDao = new RepositorioTiempo(); tipoVehiculoDao = new RepositorioTipoVehiculo(); precioDao = new RepositorioPrecio(); servicioDao = new RepositorioServicio(); }
public GestorPrecio(IRepositorioDiaAtencion diaAtencionDao, IRepositorioTiempo tiempoDao, IRepositorioTipoVehiculo tipoVehiculoDao, IRepositorioPrecio precioDao) { this.precioDao = precioDao; this.tiempoDao = tiempoDao; this.tipoVehiculoDao = tipoVehiculoDao; this.diaAtencionDao = diaAtencionDao; }
/// <summary> /// Constructor /// </summary> public GestorPlaya() { gestorDireccion = new GestorDireccion(); tipoVehiculoDao = new RepositorioTipoVehiculo(); playaDao = new RepositorioPlayaDeEstacionamiento(); tipoPlayaDao = new RepositorioTipoDePlaya(); diaAtencionDao = new RepositorioDiaAtencion(); horarioDao = new RepositorioHorario(); servicioDao = new RepositorioServicio(); precioDao = new RepositorioPrecio(); tiempoDao = new RepositorioTiempo(); }
public PruebaPlayaBase() { playaDao = new RepositorioPlayasFalso(); tipoPlayaDao = new RepositorioTipoPlayasFalso(); diaAtencionDao = new RepositorioDiaAtencionFalso(); tipoVehiculoDao = new RepositorioTipoVehiculoFalso(); horarioDao = new RepositorioHorarioFalso(); servicioDao = new RepositorioServicioFalso(); precioDao = new RepositorioPrecioFalso(); direccionDao = new RepositorioDireccionFalso(); gestorDireccion = new GestorDireccion(direccionDao); gestor = new GestorPlaya(playaDao, tipoPlayaDao, diaAtencionDao, tipoVehiculoDao, horarioDao, servicioDao, precioDao, gestorDireccion); }
/// <summary> /// Constructor utilizado en unit test /// </summary> /// <param name="playaDao"></param> /// <param name="tipoPlayaDao"></param> /// <param name="diaAtencionDao"></param> /// <param name="tipoVehiculoDao"></param> /// <param name="horarioDao"></param> /// <param name="servicioDao"></param> /// <param name="precioDao"></param> public GestorPlaya(IRepositorioPlayaDeEstacionamiento playaDao, IRepositorioTipoDePlaya tipoPlayaDao, IRepositorioDiaAtencion diaAtencionDao, IRepositorioTipoVehiculo tipoVehiculoDao, IRepositorioHorario horarioDao, IRepositorioServicio servicioDao, IRepositorioPrecio precioDao, GestorDireccion gestorDireccion) { this.gestorDireccion = gestorDireccion; this.playaDao = playaDao; this.tipoPlayaDao = tipoPlayaDao; this.diaAtencionDao = diaAtencionDao; this.tipoVehiculoDao = tipoVehiculoDao; this.horarioDao = horarioDao; this.servicioDao = servicioDao; this.precioDao = precioDao; }
public GestorHorario(IRepositorioDiaAtencion diaAtencionDao, IRepositorioHorario horarioDao) { this.diaAtencionDao = diaAtencionDao; this.horarioDao = horarioDao; }
public GestorHorario() { diaAtencionDao = new RepositorioDiaAtencion(); horarioDao = new RepositorioHorario(); }