public downloadModel(IConfiguration configuration)
 {
     _repo = new InstructionSheetRepository(configuration);
 }
Esempio n. 2
0
 public TestModel(IConfiguration configuration)
 {
     _repo          = new InstructionSheetRepository(configuration);
     FolderLocation = _repo.FolderPath;
 }
 public SetupModel(InstructionSheetRepository repo)
 {
     _repo = repo;
 }