Exemplo n.º 1
0
 public bool Update(User entity)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public bool Update(User entity)
 {
     return this._userRepository.Update(entity);
 }
Exemplo n.º 3
0
 public bool Insert(User entity)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public bool Insert(User entity)
 {
     return this._userRepository.Insert(entity);
 }