コード例 #1
0
ファイル: gestormantenedores.cs プロジェクト: Jmorenoc/.Net
 public void Concepto_Almacenar(string Descripcion, int Control, int Plazo)
 {
     Concepto = new eConcepto();                        
     Concepto._descripcion = Descripcion;
     Concepto._flagnivel = Plazo;
     Concepto._flagtipocontrol = Control;
     Concepto.Concepto_Grabar();
 }
コード例 #2
0
ファイル: gestormantenedores.cs プロジェクト: Jmorenoc/.Net
 public void Concepto_Almacenar(string Descripcion, int Control, int Plazo)
 {
     Concepto = new eConcepto();
     Concepto._descripcion     = Descripcion;
     Concepto._flagnivel       = Plazo;
     Concepto._flagtipocontrol = Control;
     Concepto.Concepto_Grabar();
 }
コード例 #3
0
ファイル: gestormantenedores.cs プロジェクト: Jmorenoc/.Net
 public void Concepto_Modificar(int id, string Descripcion, int Control, int Plazo)
 {
     Concepto = new eConcepto();
     Concepto._id = id;            
     Concepto._descripcion = Descripcion;
     Concepto._flagnivel = Plazo;
     Concepto._flagtipocontrol = Control;
     Concepto.Concepto_Modificar();
 }
コード例 #4
0
ファイル: gestormantenedores.cs プロジェクト: Jmorenoc/.Net
 public void Concepto_Modificar(int id, string Descripcion, int Control, int Plazo)
 {
     Concepto                  = new eConcepto();
     Concepto._id              = id;
     Concepto._descripcion     = Descripcion;
     Concepto._flagnivel       = Plazo;
     Concepto._flagtipocontrol = Control;
     Concepto.Concepto_Modificar();
 }
コード例 #5
0
ファイル: gestormantenedores.cs プロジェクト: Jmorenoc/.Net
 public void Concepto_Eliminar(int id)
 {
     Concepto = new eConcepto();
     Concepto._id = id;
     Concepto.Concepto_Eliminar();
 }
コード例 #6
0
ファイル: gestormantenedores.cs プロジェクト: Jmorenoc/.Net
 public void Concepto_Eliminar(int id)
 {
     Concepto     = new eConcepto();
     Concepto._id = id;
     Concepto.Concepto_Eliminar();
 }