示例#1
0
 public MangaReadRepo(ISQLClient client)
 {
     this._client = client;
 }
示例#2
0
 public TaskItemRepository(ISQLClient sqlClient)
 {
     this._sqlClient = sqlClient;
 }
示例#3
0
 public UserRepo(ISQLClient client)
 {
     this._client = client;
 }
示例#4
0
 public MangaWriteRepo(ISQLClient client)
 {
     this._client = client;
 }
示例#5
0
 public ImageRepo(ISQLClient client)
 {
     this._client = client;
 }
示例#6
0
 public TaskCategoryRepository(ISQLClient sqlClient)
 {
     _sqlClient = sqlClient;
 }
示例#7
0
 public ChapterRepo(ISQLClient client, IImageRepo images)
 {
     this._client     = client;
     this._imagesRepo = images;
 }