public int dmlBorrar(TCP_Adm_AreaGestion oDatos)
 {
     throw new NotImplementedException();
 }
 public TCP_Adm_AreaGestion dmlSelectID(TCP_Adm_AreaGestion oDatos)
 {
     throw new NotImplementedException();
 }
        public Object dmlAgregar(TCP_Adm_AreaGestion oDatos)
        {
            String sSQL = " INSERT INTO TCP_Adm_AreaGestion( agnclave, agnfecini, agnfecfin, agndescripcion) VALUES (  @P0, @P1, @P2, @P3) ";

            return(EjecutaDML(sSQL, oDatos.agnclave, oDatos.agnfecini, oDatos.agnfecfin, oDatos.agndescripcion));
        }