public void CreateSection(SectionDto dto)
 {
     try
     {
         _logger.Info("UseCase : {0}", "start create section");
         var section = new Section(dto.NameSection, dto.DecriptionSection, dto.OwnerSection)
         {
         };
         _sectionRepo.CreateSection(section);
     }
     catch (Exception ex)
     {
         _logger.Error(ex.Message);
     }
 }