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