public ContactService(IUnitOfWork unitOfWork, IPersonMapper personMapper, IContactMapper contactMapper, IContactTypeMapper contactTypeMapper)
        {
            _unitOfWork = unitOfWork;

            _personMapper      = personMapper;
            _contactMapper     = contactMapper;
            _contactTypeMapper = contactTypeMapper;
        }
 public ContactMapper(IContactTypeMapper contactTypeMapper)
 {
     _contactTypeMapper = contactTypeMapper;
 }