/// <summary>
 /// Initializes a new instance of the <see cref="EntreprisesController"/> class.
 /// </summary>
 /// <param name="context">The context.</param>
 /// <param name="mapper">The mapper.</param>
 /// <param name="entrepriseService">The entreprise service.</param>
 public EntreprisesController(LimayracIsContactListContext context, IMapper mapper, IEntrepriseService entrepriseService)
 {
     _context           = context;
     _entrepriseService = entrepriseService;
     _mapper            = mapper;
 }
 public ServicesController(LimayracIsContactListContext context, IEntrepriseService entrepriseService, IServiceService serviceService)
 {
     _context           = context;
     _entrepriseService = entrepriseService;
     _serviceService    = serviceService;
 }