public NewsService(NewsBlogDatabase db) { if (db == null) throw new ArgumentException(ERROR_OPEN_DATABASE); _database = db; }
public UserRepository(NewsBlogDatabase db) { if (db == null) throw new ArgumentException(ERROR_OPEN_DATABASE); _database = db; }
public UnitOfWork() { _database = new NewsBlogDatabase(); }