Package updates & added quickbooks path selection.
This commit is contained in:
@@ -119,6 +119,22 @@ namespace BodyshopPartner.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
private ICommand _browseForQbFolderCommand;
|
||||
public ICommand BrowseForQbFolderCommand
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_browseForQbFolderCommand == null)
|
||||
{
|
||||
_browseForQbFolderCommand = new RelayCommand(
|
||||
p => true,
|
||||
p => BrowseForQbFolder()
|
||||
);
|
||||
}
|
||||
return _browseForQbFolderCommand;
|
||||
}
|
||||
}
|
||||
|
||||
private ICommand _quitCommand;
|
||||
public ICommand QuitCommand
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user