Example #1
0
 public bool Actualiza(Guid UIDOFERTA, string NOMBRE, string ESTATUS)
 {
     try
     {
         oOferta           = new Oferta();
         oOferta.UID       = UIDOFERTA;
         oOferta.STRNOMBRE = NOMBRE;
         oOferta.oEstatus  = new Estatus()
         {
             ID = int.Parse(ESTATUS)
         };
         return(oOferta.Actualizar());
     }
     catch (Exception)
     {
         throw;
     }
 }