Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public class UserRepository : IUserRepository
  2. {
  3. readonly TinRollContext context;
  4. public UserRepository(TinRollContext context)
  5. {
  6. this.context = context;
  7. }
  8. public Task<User> CreateUserAsync(User user)
  9. {
  10. throw new NotImplementedException();
  11. }
  12.  
  13. public Task<User> GetUserAsync(int id)
  14. {
  15. throw new NotImplementedException();
  16. }
  17.  
  18. public Task<IEnumerable<User>> GetUsersAsync()
  19. {
  20. throw new NotImplementedException();
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement