public Contacts(ILogger <Contacts> logger, IMapper mapper, IContactRepo contactRepo) { logger.CheckNull(); mapper.CheckNull(); contactRepo.CheckNull(); _logger = logger; _mapper = mapper; _contactRepo = contactRepo; }