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