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