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