Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. [HttpGet("{id}")]
  2. public Event GetById(Guid id)
  3. {
  4. return _repository.GetEventById(id);
  5. }
  6. public Event GetEventById(Guid id)
  7. {
  8. return _databaseContext.Events.FirstOrDefault(e => e.Id == id);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement