public SubscriberRepository(WunderlistContext context) { this.db = context; }
public CommentRepository(WunderlistContext context) { this.db = context; }
public UserRepository(WunderlistContext context) { this.db = context; }
public AddTaskToNotepadHandler(WunderlistContext db) { _db = db; }
public TodoItemRepository(WunderlistContext context) { this.db = context; }
public SubtaskRepository(WunderlistContext context) { this.db = context; }
public GetAllTasksOfNotepadQueryHandler(WunderlistContext db) { _db = db; }
public UnitOfWork(string connectionString) { this.db = new WunderlistContext(connectionString); }
public GetAllNotepadsHandler(WunderlistContext db) { _db = db; }
public CreateNotepadHandler(WunderlistContext db) { _db = db; }
public TaskFileRepository(WunderlistContext context) { this.db = context; }