optimizations
This commit is contained in:
parent
1b78b245d1
commit
b98623f092
5 changed files with 97 additions and 62 deletions
|
|
@ -17,6 +17,8 @@ namespace ImageCatalog_2
|
|||
public ICommand TestCommand { get; }
|
||||
|
||||
public ICommand AsyncTestCommand { get; }
|
||||
|
||||
public ICommand ProcessImagesCommand { get; }
|
||||
|
||||
private readonly ITestService _service;
|
||||
public DataModel(ITestService testService)
|
||||
|
|
@ -25,6 +27,8 @@ namespace ImageCatalog_2
|
|||
|
||||
TestCommand = new RelayCommand(Test);
|
||||
AsyncTestCommand = new AsyncCommand(TestAsync);
|
||||
|
||||
ProcessImagesCommand = new AsyncCommand(ProcessImages);
|
||||
}
|
||||
|
||||
private string _sourcePath;
|
||||
|
|
@ -73,5 +77,10 @@ namespace ImageCatalog_2
|
|||
Debug.WriteLine("Yep c");
|
||||
}
|
||||
|
||||
private async Task ProcessImages()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue