Ejemplo n.º 1
0
        public ContactService(IUnitOfWork unitOfWork, IPersonMapper personMapper, IContactMapper contactMapper, IContactTypeMapper contactTypeMapper)
        {
            _unitOfWork = unitOfWork;

            _personMapper      = personMapper;
            _contactMapper     = contactMapper;
            _contactTypeMapper = contactTypeMapper;
        }
Ejemplo n.º 2
0
 public ContactMapper(IContactTypeMapper contactTypeMapper)
 {
     _contactTypeMapper = contactTypeMapper;
 }