Esempio n. 1
0
        public Category GetCategoryById(int id)
        {
            CategoryQuery pc = new CategoryQuery(context);

            return pc.GetById(id).FirstOrDefault();
        }
Esempio n. 2
0
 public List<Category> GetAllCategories()
 {
     CategoryQuery pq = new CategoryQuery(context);
     return pq.GetAll().ToList();
 }