* Agrego default value para los campos DateTime
{
private DateTime _fechaAfiliacion;
private int _codigo;
- private DateTime _fechaBaja;
+ private DateTime _fechaBaja = DateTime.MinValue;
private int _moroso;
private Afiliado _titular;
private Plan _plan;
private string _nombre = null;
private string _apellido = null;
private string _eMail;
- private DateTime _fechaNacimiento;
+ private DateTime _fechaNacimiento = DateTime.MinValue;
private ESexo _sexo;
private SDireccion _direccion;
SOURCE_CONTROLADOR=$(shell ls --color=none Controlador/*.cs)
SOURCE_VISTAS=$(shell ls --color=none Vistas/*.cs)
SOURCE_TEST=$(shell ls --color=none Tests/*.cs)
+SOURCE_REPORTES=$(shell ls --color=none Reportes/*.cs)
-SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) $(SOURCE_VISTAS) $(SOURCE_TEST)
+SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) $(SOURCE_VISTAS) $(SOURCE_TEST) $(SOURCE_REPORTES)
LIBS=-pkg:glade-sharp-2.0 -pkg:gtk-sharp-2.0 -r:./bin/db4o.dll
GLADE_FILES=$(shell ls --color=none ../glade/*.glade)