public void SetFPApplication(FPApplication fpApplication)
 {
     this.FPApplication = fpApplication;
     this._masterDataBusinessLogic = new MasterDataBLL(this.FPApplication);
 }
 public void SetFPApplication(Common.FPApplication fpApplication)
 {
     this.FPApplication = fpApplication;
     this._registrationBusinessLogic = new RegistrationBLL();
 }
 public MasterDataProvider(FPApplication fpApplication)
 {
     this.FPApplication = fpApplication;
 }
 public void SetFPApplication(Common.FPApplication fpApplication)
 {
     this.FPApplication = fpApplication;
     this._masterConfigurationBLL = new MasterConfigurationBLL();
 }
Example #5
0
 public MasterDataBLL(FPApplication fpApplication)
 {
     this.FPApplication = fpApplication;
     this.masterDataDal = new MasterDataProviderDAL(fpApplication);
 }