예제 #1
0
        public Contacts(ILogger <Contacts> logger, IMapper mapper, IContactRepo contactRepo)
        {
            logger.CheckNull();
            mapper.CheckNull();
            contactRepo.CheckNull();

            _logger      = logger;
            _mapper      = mapper;
            _contactRepo = contactRepo;
        }