Beispiel #1
0
 public static void AgregarFactura(string encabezado, int nombre, int detalle, DateTime fecha)
 {
     using (EntidadesDataContext objDataContext = new EntidadesDataContext())
     {
         Tb_Factura objEmp = new Tb_Factura();
         // fields to be insert
         objEmp.Encabezado = encabezado;
         objEmp.Cliente    = nombre;
         objEmp.Detalle    = detalle;
         objEmp.fecha      = fecha;
         objDataContext.Tb_Factura.InsertOnSubmit(objEmp);
         // executes the commands to implement the changes to the database
         objDataContext.SubmitChanges();
     }
 }
 private void detach_Tb_Factura(Tb_Factura entity)
 {
     this.SendPropertyChanging();
     entity.Tb_cliente = null;
 }
 partial void UpdateTb_Factura(Tb_Factura instance);
 partial void DeleteTb_Factura(Tb_Factura instance);
 partial void InsertTb_Factura(Tb_Factura instance);