/// <summary>
        ///Metodo para Registrar Corporacion
        /// </summary>


        public EAD_Corporacion RegistrarCorporacion(string scorp_name, bool bcorp_status, string scorp_createby,
                                                    DateTime tcorp_datecreateby, string scorp_modifyby, DateTime tcorp_datemodiby)
        {
            DAD_Corporacion oDAD_Corporacion = new DAD_Corporacion();
            EAD_Corporacion oEAD_Corporacion = oDAD_Corporacion.RegistrarCorporacion(scorp_name, bcorp_status, scorp_createby,
                                                                                     tcorp_datecreateby, scorp_modifyby, tcorp_datemodiby);

            oDAD_Corporacion = null;
            return(oEAD_Corporacion);
        }