TrazaRgpd.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Data;
6 
7 namespace sage.addons.rgpd.Negocio
8 {
12  internal class TrazaRgpd
13  {
14  #region PROPIEDADES PRIVADAS
15 
16  private int _nId = 0;
17  private string _cNombre = string.Empty;
18  private string _cPropiedad = string.Empty;
19  private string _cGrupo = string.Empty;
20 
21  #endregion
22 
23  #region PROPIEDADES PUBLICAS
24 
28  public int _Id
29  {
30  get
31  {
32  return _nId;
33  }
34  }
35 
39  public string _Nombre
40  {
41  get
42  {
43  return _cNombre;
44  }
45  }
46 
50  public string _Propiedad
51  {
52  get
53  {
54  return _cPropiedad;
55  }
56  }
57 
61  public string _Grupo
62  {
63  get
64  {
65  return _cGrupo;
66  }
67  }
68 
69  #endregion
70 
75  public TrazaRgpd(DataRow tdInfTraza)
76  {
77  _nId = Convert.ToInt32(tdInfTraza["id"]);
78  _cNombre = tdInfTraza["nombre"].ToString();
79  _cPropiedad = tdInfTraza["propiedad"].ToString();
80  _cGrupo = tdInfTraza["grupo"].ToString();
81  }
82  }
83 }
Es como el tipo de entrada asientos pero por negocio, sin formulario, pq quiero que me haga las propu...