Esempio n. 1
0
 public GetCorpPassengerCustomerServiceBll(ICorpDepartmentDal corpDepartmentDal,
                                           IGetContactBll getContactBll, IGetCustomerBll customerBll) : base()
 {
     _corpDepartmentDal = corpDepartmentDal;
     _getContactBll     = getContactBll;
     _customerBll       = customerBll;
 }
Esempio n. 2
0
 public GetTravelListApplication(IGetTravelServiceBll getTravelServiceBll,
                                 IGetCityForFlightServiceBll getCityForFlightServiceBll, IGetContactBll getContactBll)
 {
     _getTravelServiceBll        = getTravelServiceBll;
     _getCityForFlightServiceBll = getCityForFlightServiceBll;
     _getContactBll = getContactBll;
 }
Esempio n. 3
0
 public GetContactServiceBll(IGetContactBll getContactBll, IContactIdentificationDal contactIdentificationDal)
 {
     _getContactBll            = getContactBll;
     _contactIdentificationDal = contactIdentificationDal;
 }
Esempio n. 4
0
 public SearchContactsServiceBll(IGetCustomerBll getCustomerBll, IGetContactBll getContactBll)
 {
     _getCustomerBll = getCustomerBll;
     _getContactBll  = getContactBll;
 }