Exemple #1
0
 /// <summary>
 /// Get all places without its votes for given event
 /// </summary>
 /// <param name="eventId">Event Id</param>
 /// <returns>List of places without votes</returns>
 public async Task <IList <Place> > GetPlaces(Guid eventId)
 {
     return(await _placeRepository.GetPlaceInfoByEvent(eventId));
 }