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