public LocationProgramService(
     IMapper mapper,
     IServiceLocationProgramRepository programRepository)
 {
     _mapper            = mapper;
     _programRepository = programRepository;
 }
 public AppointmentService(IMapper mapper,
                           IServiceLocationAppointmentRepository appointmentRepository,
                           IServiceLocationProgramRepository programRepository)
 {
     _mapper = mapper;
     _appointmentRepository = appointmentRepository;
     _programRepository     = programRepository;
 }