Beispiel #1
0
 public ReservacionController()
 {
     if (_reserva == null)
     {
         _reserva = new ReservasNegocio();
     }
     if (_cliente == null)
     {
         _cliente = new ClienteNegocio();
     }
     if (_salon == null)
     {
         _salon = new SalaNegocio();
     }
 }