public Autorizacion( DateTime fechaSolicitud )
{
- #warning Ver cómo manejar los códigos con DB4O
this.FechaSolicitud = fechaSolicitud;
}
+ //GR. Lo agrego por comodidad para hacer consultas a db4o
+ public Autorizacion( int codigo )
+ {
+ this.Codigo = codigo;
+ }
+
+ //Se necesita alguno vacio por tema de consultas en db4.
+ public Autorizacion()\r
+ {
+ }
+
#endregion Constructores
#region Métodos Públicos
{\r
string strAut = string.Empty;\r
\r
- strAut += "Tipo: " + this.GetType().Name + "\n";\r
+ strAut += "Tipo: " + this.GetType().Name + System.Environment.NewLine;\r
\r
System.Reflection.PropertyInfo[] properties = this.GetType().GetProperties();\r
foreach ( System.Reflection.PropertyInfo property in properties )\r
{\r
- strAut += property.Name + " = " + property.GetValue( this, null ) + "\n";\r
+ strAut += property.Name + " = " + property.GetValue( this, null ) + System.Environment.NewLine;\r
}\r
\r
return strAut;\r
{
}
+ public AutorizacionManual()\r
+ {
+ }
+
+ //para consultas a db4o
+ public AutorizacionManual( int codigo )
+ {
+ this.Codigo = codigo;
+ }
+
#endregion Constructores
#region Métodos Públicos
: base( fechaSolicitud )
{
}
+
+ public AutorizacionAutomatica()
+ {
+ }
+
+ //para consultas a db4o
+ public AutorizacionAutomatica( int codigo )
+ {
+ this.Codigo = codigo;
+ }
#endregion Constructores