Example #1
0
 public ClientesBL()
 {
     ListaClientes = new BindingList <Cliente>();
     _contexto     = new Contexto();
 }
Example #2
0
 public EntregasBL()
 {
     _contexto     = new Contexto();
     ListaEntregas = new BindingList <Entregas>();
 }
Example #3
0
 public FacturasBL()
 {
     _contexto = new Contexto();
 }
Example #4
0
 public IngresosBL()
 {
     _contexto     = new Contexto();
     ListaIngresos = new BindingList <Ingreso>();
 }
Example #5
0
 public TiposBL()
 {
     _contexto  = new Contexto();
     ListaTipos = new BindingList <Tipo>();
 }