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

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

            return(new PaymentOptionsRepository(context));
        }
Ejemplo 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;
 }