public void CreateSection(SectionEntity entity)
 {
     try
     {
         _sectionReposytory.Create(entity.ToDalSection());
         _unitOfWorkuow.Commit();
     }
     catch (Exception e)
     {
         Log.LogError(e);
     }
 }