Beispiel #1
0
 public PaymentDueRepository(LendeeContext context) : base(context)
 {
 }
 public RepaymentRepository(LendeeContext context)
 {
     this.context = context;
 }
 public GenericRepository(LendeeContext context)
 {
     this.context = context;
     this.set     = context.Set <T>();
 }
Beispiel #4
0
 public ContractDraftRepository(LendeeContext context)
 {
     this.context = context;
 }
 public EntityRepository(LendeeContext context)
 {
     this.context = context;
 }