public string Adicionar(TiposGerais tiposGerais) { TiposGeraisModel tgm = new TiposGeraisModel(); try { tgm.TiposGerais.Add(tiposGerais); tgm.SaveChanges(); return("Tipo cadastrado"); } catch (Exception) { return("Não foi possível cadastrar este tipo."); } }
public string Deletar(int tipoID) { TiposGeraisModel tgm = new TiposGeraisModel(); try { TiposGerais tipoGeral = tgm.TiposGerais.Single(c => c.tipoID.Equals(tipoID)); tgm.TiposGerais.Remove(tipoGeral); tgm.SaveChanges(); return("Deletado com sucesso"); } catch (Exception e) { return("Não foi possivel deletar."); } }
public string Alterar(TiposGerais tiposGerais) { TiposGeraisModel tgm = new TiposGeraisModel(); TiposGerais tipoGeral = tgm.TiposGerais.Single(c => c.tipoID.Equals(tiposGerais.tipoID)); tipoGeral.nome = tiposGerais.nome; tipoGeral.telaID = (tiposGerais.telaID == null ? tipoGeral.telaID : tiposGerais.telaID); try { tgm.SaveChanges(); return("Item alterado."); } catch (Exception) { return("Não foi possível alterar."); } }