public bool Update(Proyecto objeto)
 {
     if (objeto == null)
     {
         return(false);
     }
     try
     {
         using (db)
         {
             db.Entry(objeto).State = System.Data.Entity.EntityState.Modified;
             db.SaveChanges();
             return(true);
         }
     }
     catch (Exception ex)
     {
         return(false);
     }
 }