Esempio n. 1
0
 void IClientRepository.Edit(Entities.clients client)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 void IClientRepository.Add(Entities.clients client)
 {
     _context.Clients.Add(client);
     _context.SaveChanges();
 }