public CrmCommonController(ICrmService crmService,
                            ICrmOrganizationService organizationService,
                            ILeadService <Lead> leadService,
                            IMapper mapper)
 {
     _crmService          = crmService;
     _organizationService = organizationService;
     _leadService         = leadService;
     _mapper = mapper;
 }
Beispiel #2
0
 public PaymentService(IPaymentContext context,
                       IMapper mapper,
                       ICrmOrganizationService organizationService,
                       IProductService productService,
                       INotify <GearRole> notifyService)
 {
     _context             = context;
     _mapper              = mapper;
     _organizationService = organizationService;
     _productService      = productService;
     _notifyService       = notifyService;
 }
 public OrganizationsController(ICrmOrganizationService organizationService, ILeadService <Lead> leaService)
 {
     _organizationService = organizationService;
     _leaService          = leaService;
 }