コード例 #1
0
ファイル: EstadosBE.cs プロジェクト: DialTecSoftware/Hersan
 public EstadosBE()
 {
     Pais         = new PaisesBE();
     Id           = 0;
     Nombre       = string.Empty;
     Abrev        = string.Empty;
     DatosUsuario = new GeneralBE();
 }
コード例 #2
0
ファイル: EmpresasBE.cs プロジェクト: DialTecSoftware/Hersan
 public EmpresasBE()
 {
     Id = 0;
     NombreComercial = string.Empty;
     NombreFiscal    = string.Empty;
     RFC             = string.Empty;
     Direccion       = string.Empty;
     NoExterior      = string.Empty;
     NoInterior      = string.Empty;
     RegimenFiscal   = new RegimenSATBE();
     Telefonos       = string.Empty;
     Correo          = string.Empty;
     Contacto        = string.Empty;
     Pais            = new PaisesBE();
     Estado          = new EstadosBE();
     Ciudad          = new CiudadesBE();
     Colonia         = new ColoniasBE();
     DatosUsuario    = new GeneralBE();
 }