Example #1
0
 /// <summary>
 /// Obtiene la empresa de la base de datos
 /// </summary>
 public EmpresaN() 
 {
     _Datos = new Datos.EmpresaD();
     DataTable DT=null;
     try
     {
        DT  = _Datos.ObtenerEmpresa();
     }
     catch (Exception EXC) 
     {
         Entidades.Catcher.Catcher.Agregar_Error(this.ToString(), EXC.StackTrace);
     }
     
     
     if (DT != null)
     {
         try
         {
             this.Id = Convert.ToInt32(DT.Rows[0]["Id"].ToString());
             this.RazonSocial = DT.Rows[0]["Nombre"].ToString();
             this.NombreFantasia = DT.Rows[0]["NombreFantasia"].ToString();
             this.Cuit = DT.Rows[0]["CUIT"].ToString();
             this.IngresosBrutos = DT.Rows[0]["IngresosBrutos"].ToString();
             this.InicioActividad = Convert.ToDateTime(DT.Rows[0]["InicioACtividad"].ToString());
             this.CategoriaAFIP = Convert.ToInt32(DT.Rows[0]["IdCategoriaAFIP"].ToString());
             this.Succed = true;
         }
         catch (Exception EXC)
         {
             Entidades.Catcher.Catcher.Agregar_Error(this.ToString(), EXC.StackTrace);
             this.Succed = false;
         }
     }
     else 
     {
         this.Succed = false;
     }
 }
Example #2
0
        public EmpresaN(
            string p_razonsocial, 
            string p_nombrefantasia, 
            string p_cuit, 
            string p_ingresosbrutos, 
            DateTime p_inicioactividad,
            int p_catafip)
        {
            _Datos = new EmpresaD();
            Id =_Datos.InsertarEmpresa(
                p_razonsocial,
                p_nombrefantasia,
                p_cuit,
                p_ingresosbrutos,
                p_inicioactividad,
                p_catafip
                );
            if ( Id!=0)
            {
                Succed = true;
            }
            else 
            {
                Succed = false;
            }

        }