public Program(string apiKey, IChunkRepository chunkRepositiory)
 {
     Api = new API(apiKey);
     ChunkRepository = chunkRepositiory;
 }
예제 #2
0
 public CreateChunksHandler(IChunkRepository chunkRepository)
 {
     _chunkRepository = chunkRepository;
 }
예제 #3
0
 public Program(string apiKey, IChunkRepository chunkRepositiory)
 {
     Api             = new API(apiKey);
     ChunkRepository = chunkRepositiory;
 }