Example #1
0
 public AllocateStore(PointsGameDbContext context)
 {
     Context = context;
 }
Example #2
0
 public HelperDynamic(PointsGameDbContext context)
 {
     Context = context;
 }
Example #3
0
 public RankTitleStore(PointsGameDbContext context)
 {
     Context = context;
 }
Example #4
0
 public TaskStore(PointsGameDbContext context)
 {
     Context   = context;
     TaskItems = Context.TaskItems;
 }
Example #5
0
 public GiftStore(PointsGameDbContext context)
 {
     Context = context;
 }
Example #6
0
 public DealStore(PointsGameDbContext context)
 {
     Context = context;
 }
Example #7
0
 public SearchStore(PointsGameDbContext context)
 {
     Context = context;
 }
Example #8
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="context"></param>
 public UserStore(PointsGameDbContext context)
 {
     Context = context ?? throw new ArgumentNullException(nameof(context));
 }
Example #9
0
 public PeriodStore(PointsGameDbContext context)
 {
     Context = context;
 }