public PrisonsController(IPrisonRepository prisonRepo, IMapper mapper) { _prisonRepo = prisonRepo; _mapper = mapper; }
public PrisonService(IPrisonRepository prisonRepository) { _prisonRepository = prisonRepository; }