public OrganizationService(ICrmOrganizationContext organizationContext,
                            IMapper mapper,
                            INotify <GearRole> notify,
                            IOrganizationAddressService addressService)
 {
     _organizationContext = organizationContext;
     _mapper         = mapper;
     _notify         = notify;
     _addressService = addressService;
 }
Exemplo n.º 2
0
 public EmployeeService(ICrmOrganizationContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public OrganizationAddressService(ICrmOrganizationContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public IndustryService(ICrmOrganizationContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 5
0
 public ContactService(ICrmOrganizationContext organizationContext, IMapper mapper)
 {
     _organizationContext = organizationContext;
     _mapper = mapper;
 }