Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CategoriesRepository"/> class.
 /// </summary>
 /// <param name="context">The context for communicating with the checkbook database.</param>
 public CategoriesRepository(CheckbookContext context)
 {
     this.context = context;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MerchantsRepository"/> class.
 /// </summary>
 /// <param name="context">The context for communicating with the checkbook database.</param>
 public MerchantsRepository(CheckbookContext context)
 {
     this.context = context;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountsRepository"/> class.
 /// </summary>
 /// <param name="context">The context for communicating with the checkbook database.</param>
 public AccountsRepository(CheckbookContext context)
 {
     this.context = context;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BudgetsRepository"/> class.
 /// </summary>
 /// <param name="context">The context for communicating with the checkbook database.</param>
 public BudgetsRepository(CheckbookContext context)
 {
     this.context = context;
 }
Exemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TransactionsRepository"/> class.
 /// </summary>
 /// <param name="context">The context for communicating with the checkbook database.</param>
 public TransactionsRepository(CheckbookContext context)
 {
     this.context = context;
 }