public void Add(T entity)
 {
     _context.Add(entity);
 }
Example #2
0
 /* * * * * * * * * * * GERAIS * * * * * * * * * * * * * * * */
 public void Add <T>(T entity) where T : class
 {
     _context.Add(entity);
 }
 public void Add(T entity)
 {
     proAgilContext.Add(entity);
 }