IO-227 Succesful export of PPG information.
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
@@ -359,5 +359,10 @@ namespace BodyshopPartner.ViewModels
|
||||
Utils.SquirrelAwareHelper.AddHttpExcetion();
|
||||
|
||||
}
|
||||
|
||||
public void ConfigurePaintScale()
|
||||
{
|
||||
Utils.PaintScaleConfig.RegisterScheduledTask();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user