IO-227 Succesful export of PPG information.

This commit is contained in:
Patrick Fic
2022-01-18 15:00:27 -08:00
parent d7cde2be37
commit 926f20ba0a
17 changed files with 214 additions and 38 deletions

View File

@@ -202,6 +202,22 @@ namespace BodyshopPartner.ViewModels
}
}
private ICommand _configurePaintScaleCommand;
public ICommand ConfigurePaintScaleCommand
{
get
{
if (_configurePaintScaleCommand == null)
{
_configurePaintScaleCommand = new RelayCommand(
p => true,
p => ConfigurePaintScale()
);
}
return _configurePaintScaleCommand;
}
}
private ICommand _installUpdatesCommand;
public ICommand InstallUpdatesCommand
{

View File

@@ -359,5 +359,10 @@ namespace BodyshopPartner.ViewModels
Utils.SquirrelAwareHelper.AddHttpExcetion();
}
public void ConfigurePaintScale()
{
Utils.PaintScaleConfig.RegisterScheduledTask();
}
}
}