Beispiel #1
0
        // GET: api/Schedule/5
        public Schedule Get(int id)
        {
            SchedulePersistence sp = new SchedulePersistence();

            if (sp.GetSchedule(id) == null)
            {
                throw new  HttpResponseException(new HttpResponseMessage(HttpStatusCode.NotFound));
            }
            return(sp.GetSchedule(id));
        }