Exemple #1
0
        public List <Performance> FindPerformances(int id, string eventName)
        {
            IMeetDBSvc         meetDBSvc = (IMeetDBSvc)GetService(typeof(IMeetDBSvc).Name);
            List <Performance> perfs     = meetDBSvc.FindPerformances(id, eventName);

            return(perfs);
        }
Exemple #2
0
        public Dictionary <string, List <Performance> > FindPerformances(int id)
        {
            IMeetDBSvc meetDBSvc = (IMeetDBSvc)GetService(typeof(IMeetDBSvc).Name);
            Dictionary <string, List <Performance> > perfs = meetDBSvc.FindPerformances(id);

            return(perfs);
        }