示例#1
0
 public MatchCorpPolicyAndAduitServiceBll(IGetCustomerBll getCustomerBll,
                                          IChangeInfoFactory changeInfoFactory, IProjectNameDal projectNameDal)
 {
     _getCustomerBll    = getCustomerBll;
     _changeInfoFactory = changeInfoFactory;
     _projectNameDal    = projectNameDal;
 }
示例#2
0
 public GetCorpPassengerCustomerServiceBll(ICorpDepartmentDal corpDepartmentDal,
                                           IGetContactBll getContactBll, IGetCustomerBll customerBll) : base()
 {
     _corpDepartmentDal = corpDepartmentDal;
     _getContactBll     = getContactBll;
     _customerBll       = customerBll;
 }
 public GetCorpAduitOrderServiceBll(ICorpAduitOrderDal corpAduitOrderDal,
                                    ICorpAduitOrderFlowDal corpAduitOrderFlowDal, ICorpAduitOrderLogDal corpAduitOrderLogDal,
                                    ICorpAduitOrderDetailDal corpAduitOrderDetailDal, IGetCustomerBll getCustomerBll)
 {
     _corpAduitOrderDal       = corpAduitOrderDal;
     _corpAduitOrderFlowDal   = corpAduitOrderFlowDal;
     _corpAduitOrderLogDal    = corpAduitOrderLogDal;
     _corpAduitOrderDetailDal = corpAduitOrderDetailDal;
     _getCustomerBll          = getCustomerBll;
 }
示例#4
0
 public GetCustomerServiceBll(IGetCustomerBll customerBll) : base()
 {
     _customerBll = customerBll;
 }
示例#5
0
 public SearchContactsServiceBll(IGetCustomerBll getCustomerBll, IGetContactBll getContactBll)
 {
     _getCustomerBll = getCustomerBll;
     _getContactBll  = getContactBll;
 }
 public PostIdentificationServiceBll(IContactDal contactDal, IContactIdentificationDal contactIdentificationDal, IGetCustomerBll getCustomerBll)
 {
     this._contactDal = contactDal;
     this._contactIdentificationDal = contactIdentificationDal;
     _getCustomerBll = getCustomerBll;
 }