public ExpressionRepository(GnomeDb context) : base(context)
 {
 }
Example #2
0
 public AccountRepository(GnomeDb context) : base(context)
 {
 }
Example #3
0
 public UserRepository(GnomeDb context)
 {
     this.context = context;
 }
Example #4
0
 public CategoryTransactionRepository(GnomeDb context) : base(context)
 {
 }
Example #5
0
 public RuleRepository(GnomeDb context) : base(context)
 {
 }
Example #6
0
 public ReportRepository(GnomeDb context) : base(context)
 {
 }
Example #7
0
 public QueryRepository(GnomeDb context) : base(context)
 {
 }
Example #8
0
 public GenericRepository(GnomeDb context)
 {
     this.context = context;
     this.set     = context.Set <T>();
 }
Example #9
0
 public CategoryRepository(GnomeDb context) : base(context)
 {
 }