public SectionEntity GetSectionEntity(int id)
 {
     try
     {
         return(_sectionReposytory.GetById(id)?.ToBllSection());
     }
     catch (Exception e)
     {
         Log.LogError(e);
         return(null);
     }
 }