예제 #1
0
 public bool Adicionar(T item)
 {
     try
     {
         dataBase.Add(item);
         contexto.Save();
         return(true);
     }
     catch
     {
         return(false);
     }
 }