public void GetByID()
 {
     var k = categoryBL.GetById(10);
 }
 public CategoryDTO Get(int id)
 {
     return(CategoryBL.GetById(id));
 }