estados.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Data;
6 using System.ComponentModel;
7 
8 using sage.ew.global;
9 using sage.ew.db;
10 using sage.ew.ewbase;
11 using System.Windows.Forms;
12 
13 
14 namespace sage.addons.gaped.Negocio.Mantes
15 {
16  public partial class estados : ewMante
17  {
21  public bool _EnUso = false;
22 
26 
27  public string _Empresa
28  {
29  get
30  {
31  if (_lisCampos.ContainsKey("EMPRESA"))
32  {
33  return Convert.ToString(_lisCampos["EMPRESA"]._NewVal);
34  }
35  else
36  {
37  return String.Empty;
38  }
39  }
40  set
41  {
42  if (_lisCampos.ContainsKey("EMPRESA"))
43  {
44 
45 
46  _lisCampos["EMPRESA"]._NewVal = value;
47  }
48  }
49  }
50 
54 
55  public string _Libreria
56  {
57  get
58  {
59  if (_lisCampos.ContainsKey("LIBRERIA"))
60  {
61  return Convert.ToString(_lisCampos["LIBRERIA"]._NewVal);
62  }
63  else
64  {
65  return String.Empty;
66  }
67  }
68  set
69  {
70  if (_lisCampos.ContainsKey("LIBRERIA"))
71  {
72 
73 
74  _lisCampos["LIBRERIA"]._NewVal = value;
75  }
76  }
77  }
78 
82 
83  public string _Clase
84  {
85  get
86  {
87  if (_lisCampos.ContainsKey("CLASE"))
88  {
89  return Convert.ToString(_lisCampos["CLASE"]._NewVal);
90  }
91  else
92  {
93  return String.Empty;
94  }
95  }
96  set
97  {
98  if (_lisCampos.ContainsKey("CLASE"))
99  {
100 
101 
102  _lisCampos["CLASE"]._NewVal = value;
103  }
104  }
105  }
106 
107 
108 
109 
113  public estados()
114  {
115  Inicializar();
116  }
117 
122  public estados(string tcCodigo)
123  {
124  Inicializar();
125 
126  this._Codigo = tcCodigo;
127  this._Load();
128  }
129 
130  private void Inicializar()
131  {
132  // Asignamos las propiedades para el mantenimiento
133  this._Clave = "Codigo";
134  this._DataBase = "GAPED";
135  this._Tabla = "estados";
136  this._TituloMantenimiento = "Mantenimiento de estados";
137 
138  this._Pantalla = "estados";
139  this._FormManteBaseType = typeof(Visual.Forms.frmestados);
140 
141  this._Codigo = string.Empty;
142  }
143  }
144 
145 
146 }
Clase de negocio base para mantenimientos
Definition: clsEwBase.cs:1643
Clase base para el módulo GAPed
Definition: SageAddons.cs:566
estados(string tcCodigo)
Constructor con código
Definition: estados.cs:122