Example #1
0
        public ICustomerVerifyBLL <CustomerInfoModel> CreateBllObj()
        {
            ICustomerInfoDALFactory factory = new CustomerInfoDALFactory();
            ICustomerInfoDAL        dal     = factory.CreateSampleDalObj();

            return(new CustomerVerifyBLL(dal));
        }
 public GetPrintFltTicketEmailMessageContentMyServiceBll(ICustomerInfoDAL customerInfoDAL, ICorporationDAL corporationDal)
 {
     _customerInfoDal = customerInfoDAL;
     _corporationDal  = corporationDal;
 }
Example #3
0
 public CustomerBLL(ICustomerInfoDAL dal)
 {
     _dal = dal;
 }
Example #4
0
 public CustomerVerifyBLL(ICustomerInfoDAL dal)
 {
     _dal = dal;
 }
 public CustomerInfoBLL(ICustomerInfoDAL customerDAL)
 {
     this.customerDAL = customerDAL;
     base.Dal         = customerDAL;
 }
 public AddAppOpinionServiceBll(IAppOpinionDal appOpinionDal, ICustomerInfoDAL customerInfoDal, ICorporationDAL corporationDal)
 {
     _appOpinionDal   = appOpinionDal;
     _customerInfoDal = customerInfoDal;
     _corporationDal  = corporationDal;
 }