public ReglementFactureService(IReglementFactureRepository repository, IMapper mapper) : base(repository)
 {
     this.repository = repository ?? throw new ArgumentNullException(nameof(repository));
     this.mapper     = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
 public ReglementFactureService(IReglementFactureRepository reglementFactureRepository, IUnitOfWork unitOfWork)
 {
     this.reglementFactureRepository = reglementFactureRepository;
     this.unitOfWork = unitOfWork;
 }