public List <Files> GetByProductCategory(int productCategoryId) { try { return(_filesRepository.GetByProductCategory(productCategoryId).ToListBLL()); } catch (Exception e) { throw new Exception(e.Message); } }