public MangaReadRepo(ISQLClient client) { this._client = client; }
public TaskItemRepository(ISQLClient sqlClient) { this._sqlClient = sqlClient; }
public UserRepo(ISQLClient client) { this._client = client; }
public MangaWriteRepo(ISQLClient client) { this._client = client; }
public ImageRepo(ISQLClient client) { this._client = client; }
public TaskCategoryRepository(ISQLClient sqlClient) { _sqlClient = sqlClient; }
public ChapterRepo(ISQLClient client, IImageRepo images) { this._client = client; this._imagesRepo = images; }