Esempio n. 1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="context"></param>
 /// <param name="workFlowCreatorService"></param>
 /// <param name="mapper"></param>
 /// <param name="notify"></param>
 public PipeLineService(IPipeLineContext context,
                        IWorkFlowCreatorService <WorkFlow> workFlowCreatorService,
                        IMapper mapper,
                        INotify <GearRole> notify)
 {
     _context = context;
     _workFlowCreatorService = workFlowCreatorService;
     _mapper = mapper;
     _notify = notify;
 }
 public CrmDashboardService(ILeadContext <Lead> leadContext, IPipeLineContext pipeLineContext)
 {
     _leadContext     = leadContext;
     _pipeLineContext = pipeLineContext;
 }