Esempio n. 1
0
 public BusinessRulesRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
 }
Esempio n. 2
0
        private IModulesRepository GetModulesRepository()
        {
            BusinessRulesDataEngineContext context = new BusinessRulesDataEngineContext();

            return(new ModulesRepository(context));
        }
Esempio n. 3
0
        private IPaymentOptionsRepository GetIPaymentOptionsRepository()
        {
            BusinessRulesDataEngineContext context = new BusinessRulesDataEngineContext();

            return(new PaymentOptionsRepository(context));
        }
Esempio n. 4
0
        private IMemberShipRepository GetMembershipRepository()
        {
            BusinessRulesDataEngineContext context = new BusinessRulesDataEngineContext();

            return(new MemberShipRepository(context));
        }
 public PaymentOptionsRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
 }
 public PaymentRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
     this.memberShipRepository = new MemberShipRepository(new BusinessRulesDataEngineContext());
 }
 public MemberShipRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
 }