public static bool Save(Grupos model) { bool result; using (HelpDeskApfEntities context = new HelpDeskApfEntities()) { try { context.GRUPOS.Add(model.ToTable()); context.SaveChanges(); result = true; } catch (Exception) { result = false; } } return(result); }