public Outcome GetOutcomeByID(int id, string lang = "en") { Outcome outcome = databasePlaceholder.Get(id, lang); if (outcome == null) { throw new HttpResponseException(HttpStatusCode.NotFound); } return(outcome); }
public IEnumerable <Outcome> GetAll() { return(repository.Get()); }