()
| 9 | private int _nextId = 1; |
| 10 | |
| 11 | public UserRepository() |
| 12 | { |
| 13 | Add(new UserModel { firstName= "first1", lastName="last1", email="email1@gmail.com"}); |
| 14 | Add(new UserModel { firstName= "first2", lastName="last2", email="email2@gmail.com"}); |
| 15 | Add(new UserModel { firstName= "first3", lastName="last3", email="email3@gmail.com"}); |
| 16 | } |
| 17 | |
| 18 | public IEnumerable<UserModel> GetAll() |
| 19 | { |
nothing calls this directly
no outgoing calls
no test coverage detected