Beispiel #1
0
        public List <Rating> GetAllRatings()
        {
            List <Rating> rL = new List <Rating>();

            ChkContext();
            using (context)
            {
                rL = DALServices.GetAllRatings(context);
            }
            ClearContext();
            return(rL);
        }