예제 #1
0
 public RoleRepository(IBirthdaysContext context)
     : base(context)
 {
 }
 public BirthdayArrangementRepository(IBirthdaysContext context)
     : base(context)
 {
 }
예제 #3
0
 public GiftRepository(IBirthdaysContext context)
     : base(context)
 {
 }
예제 #4
0
 public PaymentRepository(IBirthdaysContext context)
     : base(context)
 {
 }
예제 #5
0
 public UserRepository(IBirthdaysContext context)
     : base(context)
 {
 }
예제 #6
0
 protected RepositoryBase(IBirthdaysContext context)
 {
     dataContext = context;
     dbSet       = dataContext.Set <T>();
 }