Exemplo n.º 1
0
 //Constructor
 public DocumentDetails(DAL.CRM.IDocumentDetails crmDocumentDetails,
                        ISharepointConsumer sharepointConsumer,
                        IResourceManagerFactory resourceManager,
                        ILogger logger)
 {
     this.crmDocumentDetails = crmDocumentDetails;
     this.sharepointConsumer = sharepointConsumer;
     this.resourceManager    = resourceManager;
     this.logger             = logger;
 }
Exemplo n.º 2
0
 public DocumentDetails(ICRMUtilities objCrmUtilities,
                        IResourceManagerFactory resourceManager,
                        ILogger logger,
                        ISharepointConsumer sharepointConsumer,
                        ICRMTODTOMapper objCRMToDTOMapper)
 {
     this.objCrmUtilities    = objCrmUtilities;
     this.resourceManager    = resourceManager;
     this.logger             = logger;
     this.sharepointConsumer = sharepointConsumer;
     this.objCRMToDTOMapper  = objCRMToDTOMapper;
 }
Exemplo n.º 3
0
 //Constructor
 public EstimateDetails(DAL.CRM.ICustomerDetails crmCustomerDetails,
                        DAL.CRM.IEstimateDetails crmEstimateDetails,
                        DAL.CRM.IMoveDetails crmMoveDetails,
                        IEmailHandler emailHandler,
                        ILogger logger,
                        IResourceManagerFactory resourceManager,
                        ISharepointConsumer sharepointConsumer)
 {
     this.crmCustomerDetails = crmCustomerDetails;
     this.crmEstimateDetails = crmEstimateDetails;
     this.crmMoveDetails     = crmMoveDetails;
     this.resourceManager    = resourceManager;
     this.emailHandler       = emailHandler;
     this.logger             = logger;
     this.sharepointConsumer = sharepointConsumer;
 }