Exemplo n.º 1
0
        public List <Event> getParticipants(string title, DateTime start, DateTime end, string location, PrioritiesY priority)
        {
            List <Event> listaEventi = _context.Events.Include("User").Where(x => x.Title == title && x.Start == start && x.End == end && x.Location == location && x.Priority == priority).ToList();

            return(listaEventi);
        }
Exemplo n.º 2
0
 public List <Event> getParticipants(string title, DateTime start, DateTime end, string location, PrioritiesY priority)
 {
     return(_repository.getParticipants(title, start, end, location, priority));
 }