public void Insert(ConspectCategory item)
 {
     _context.ConspectsCategories.Add(item);
     _context.SaveChanges();
 }
Exemple #2
0
 public void Insert(ConspectCategory item)
 {
     _repository.Insert(item);
 }