示例#1
0
 public void Add(Atendimento element)
 {
     try
     {
         _contexto.Atendimento.Add(element);
         _contexto.SaveChanges();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
示例#2
0
 public void Atualiza(int ID, Atendimento element)
 {
     throw new NotImplementedException();
 }