├── Demo ├── 1462131504_MB__back.ico ├── Assets │ └── 1462131504_MB__back.ico ├── CsvHelper.dll ├── CsvHelper.pdb ├── CsvHelper.xml ├── FirstFloor.ModernUI.dll ├── FirstFloor.ModernUI.xml ├── FluentValidation.dll ├── FluentValidation.pdb ├── FluentValidation.xml ├── ICSharpCode.SharpZipLib.dll ├── Inflector.dll ├── Microsoft.Practices.ServiceLocation.dll ├── Microsoft.Practices.ServiceLocation.pdb ├── Microsoft.Practices.ServiceLocation.xml ├── Microsoft.Practices.Unity.Configuration.dll ├── Microsoft.Practices.Unity.Configuration.xml ├── Microsoft.Practices.Unity.RegistrationByConvention.dll ├── Microsoft.Practices.Unity.RegistrationByConvention.xml ├── Microsoft.Practices.Unity.dll ├── Microsoft.Practices.Unity.xml ├── NPOI.OOXML.dll ├── NPOI.OpenXml4Net.dll ├── NPOI.OpenXmlFormats.dll ├── NPOI.dll ├── NPOI.xml ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.xml ├── Prism.Unity.Wpf.dll ├── Prism.Unity.Wpf.xml ├── Prism.Wpf.dll ├── Prism.Wpf.xml ├── Prism.dll ├── Prism.xml ├── RestSharp.dll ├── RestSharp.xml ├── SpicyTaco.AutoGrid.dll ├── SugarDesk.Core.dll ├── SugarDesk.Core.pdb ├── SugarDesk.PocoGen.dll ├── SugarDesk.PocoGen.pdb ├── SugarDesk.Reporting.dll ├── SugarDesk.Reporting.pdb ├── SugarDesk.Restful.dll ├── SugarDesk.Restful.dll.config ├── SugarDesk.Restful.pdb ├── SugarDesk.exe ├── SugarDesk.exe.config ├── SugarDesk.pdb ├── SugarDesk.vshost.exe ├── SugarDesk.vshost.exe.config ├── SugarDesk.vshost.exe.manifest ├── SugarRestSharp.dll ├── System.Windows.Interactivity.dll ├── cs │ └── FluentValidation.resources.dll ├── da │ └── FluentValidation.resources.dll ├── de │ ├── FluentValidation.resources.dll │ └── System.Windows.Interactivity.resources.dll ├── en │ └── System.Windows.Interactivity.resources.dll ├── es │ ├── FluentValidation.resources.dll │ └── System.Windows.Interactivity.resources.dll ├── fa │ └── FluentValidation.resources.dll ├── fi │ └── FluentValidation.resources.dll ├── fr │ ├── FluentValidation.resources.dll │ └── System.Windows.Interactivity.resources.dll ├── it │ ├── FluentValidation.resources.dll │ └── System.Windows.Interactivity.resources.dll ├── ja │ └── System.Windows.Interactivity.resources.dll ├── ko │ ├── FluentValidation.resources.dll │ └── System.Windows.Interactivity.resources.dll ├── log4net.dll ├── log4net.xml ├── mk │ └── FluentValidation.resources.dll ├── modules │ ├── SugarDesk.PocoGen.dll │ ├── SugarDesk.Reporting.dll │ └── SugarDesk.Restful.dll ├── nl │ └── FluentValidation.resources.dll ├── pl │ └── FluentValidation.resources.dll ├── pt │ └── FluentValidation.resources.dll ├── ru │ ├── FluentValidation.resources.dll │ └── System.Windows.Interactivity.resources.dll ├── sugarcrm_credential_list.json ├── sugarcrm_url_list.json ├── sv │ └── FluentValidation.resources.dll ├── tr │ └── FluentValidation.resources.dll ├── zh-CN │ └── FluentValidation.resources.dll ├── zh-Hans │ └── System.Windows.Interactivity.resources.dll └── zh-Hant │ └── System.Windows.Interactivity.resources.dll ├── LICENSE ├── README.md ├── Screenshots ├── SugarDesk01.png ├── SugarDesk02.png ├── SugarDesk_AddCredential_Dialog.png ├── SugarDesk_AddUrl_Dialog.png ├── SugarDesk_Create2_Request.png ├── SugarDesk_Create_Request.png ├── SugarDesk_ReadAll_Request.png ├── SugarDesk_ReadAll_Request_Progress.png ├── SugarDesk_ReadAll_Response.png ├── SugarDesk_ReadById_Request.png ├── SugarDesk_ReadById_Response.png ├── SugarDesk_ReadByPage_Request.png └── SugarDesk_ReadByPage_Response.png └── SugarDeskSolution ├── StyleCop.MSBuild.4.7.54.0 ├── StyleCop.MSBuild.4.7.54.0.nupkg ├── build │ └── StyleCop.MSBuild.Targets ├── license.txt └── tools │ ├── CustomDictionary.en-GB.xml │ ├── CustomDictionary.en-US.xml │ ├── CustomDictionary.xml │ ├── Settings.StyleCop │ ├── StyleCop.CSharp.Rules.dll │ ├── StyleCop.CSharp.dll │ ├── StyleCop.dll │ ├── StyleCopSettingsEditor.exe │ ├── de-DE │ └── StyleCop.CSharp.Rules.resources.dll │ ├── en-GB │ └── StyleCop.CSharp.Rules.resources.dll │ ├── es-MX │ └── StyleCop.CSharp.Rules.resources.dll │ ├── fr-FR │ └── StyleCop.CSharp.Rules.resources.dll │ ├── mssp7en.dll │ ├── mssp7en.lex │ ├── pl-PL │ └── StyleCop.CSharp.Rules.resources.dll │ ├── pt-BR │ └── StyleCop.CSharp.Rules.resources.dll │ └── ru-RU │ └── StyleCop.CSharp.Rules.resources.dll ├── SugarDesk.Core ├── FodyWeavers.xml ├── Helpers │ └── VisualChildFinder.cs ├── Infrastructure │ ├── Actions │ │ └── InvokeCommandWithParamAction.cs │ ├── Base │ │ ├── ModelBase.cs │ │ ├── ViewBase.cs │ │ └── ViewModelBase.cs │ ├── Behaviors │ │ ├── DocumentReaderBehavior.cs │ │ ├── HyperlinkBehavior.cs │ │ └── WebBrowserSourceBehavior.cs │ ├── Converters │ │ ├── BindingProxy.cs │ │ ├── BoolToVisibilityConverter.cs │ │ ├── EnumMatchToBooleanConverter.cs │ │ ├── EnumOptionType.cs │ │ ├── EnumToGridRowHeightConverter.cs │ │ ├── EnumToGridRowPercentHeightConverter.cs │ │ └── GridPercentType.cs │ └── Validators │ │ ├── IModelValidator.cs │ │ ├── ModelValidatorBase.cs │ │ └── ValidationErrorsContainer.cs ├── Interfaces │ └── INavigationLinksGroup.cs ├── MenuLinkInfo.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.StyleCop ├── StyleCop.Cache ├── SugarDesk.Core.csproj └── packages.config ├── SugarDesk.PocoGen ├── FodyWeavers.xml ├── NavigationLinksGroup.cs ├── PocoGenModule.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Settings.StyleCop ├── StyleCop.Cache ├── SugarDesk.PocoGen.csproj ├── ViewModels │ └── PocoGeneratorViewModel.cs ├── Views │ ├── About.xaml │ ├── About.xaml.cs │ ├── PocoGenView.xaml │ └── PocoGenView.xaml.cs └── packages.config ├── SugarDesk.Reporting ├── FodyWeavers.xml ├── NavigationLinksGroup.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReportingModule.cs ├── Settings.StyleCop ├── StyleCop.Cache ├── SugarDesk.Reporting.csproj ├── Views │ ├── About.xaml │ ├── About.xaml.cs │ ├── ReportsView.xaml │ └── ReportsView.xaml.cs └── packages.config ├── SugarDesk.Restful ├── Dialogs │ ├── AddCredentialContent.cs │ ├── AddUrlContent.cs │ ├── FormDataContent.cs │ └── FormDataModernDialog.cs ├── FodyWeavers.xml ├── Helpers │ ├── CsvProvider.cs │ ├── DataTableExtensions.cs │ ├── DateTimeValueProvider.cs │ ├── DeserializerExceptionsContractResolver.cs │ ├── ExcelProvider.cs │ ├── JsonStringExtensions.cs │ ├── StringExtensions.cs │ └── SugarCrmApiRestful.cs ├── Messages │ ├── AccountMessage.cs │ ├── EnableButtonMessage.cs │ └── UpdateMessage.cs ├── Models │ ├── FormModuleData.cs │ ├── ListBoxItem.cs │ ├── ModelInfo.cs │ ├── ModelProperty.cs │ ├── ModuleData.cs │ ├── RestRequest.cs │ ├── RestResponse.cs │ ├── StringExtension.cs │ ├── SugarCrmAccount.cs │ ├── SugarCrmCredential.cs │ └── SugarCrmUrl.cs ├── NavigationLinksGroup.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RestfulModule.cs ├── Settings.StyleCop ├── StyleCop.Cache ├── SugarCrmAccountService.cs ├── SugarDesk.Restful.csproj ├── Validators │ ├── ReadAllViewModelValidator.cs │ └── RestfulViewModelValidator.cs ├── ViewModels │ ├── AddCredentialViewModel.cs │ ├── AddUrlViewModel.cs │ ├── CreateViewModel.cs │ ├── DeleteViewModel.cs │ ├── FormDataViewModel.cs │ ├── ReadAllViewModel.cs │ ├── ReadByIdViewModel.cs │ ├── ReadByPageViewModel.cs │ ├── RestfulViewModel.cs │ ├── RestfulViewModelBase.cs │ └── UpdateViewModel.cs ├── Views │ ├── About.xaml │ ├── About.xaml.cs │ ├── AddCredentialContentView.xaml │ ├── AddCredentialContentView.xaml.cs │ ├── AddUrlContentView.xaml │ ├── AddUrlContentView.xaml.cs │ ├── CreateView.xaml │ ├── CreateView.xaml.cs │ ├── DeleteView.xaml │ ├── DeleteView.xaml.cs │ ├── FormDataContentView.xaml │ ├── FormDataContentView.xaml.cs │ ├── ReadAllView.xaml │ ├── ReadAllView.xaml.cs │ ├── ReadByIdView.xaml │ ├── ReadByIdView.xaml.cs │ ├── ReadByPageView.xaml │ ├── ReadByPageView.xaml.cs │ ├── RestfulView.xaml │ ├── RestfulView.xaml.cs │ ├── UpdateView.xaml │ └── UpdateView.xaml.cs ├── app.config └── packages.config ├── SugarDesk ├── 1462131504_MB__back.ico ├── 1462131504_mb__back.jpg ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── 1462131504_MB__back.ico │ ├── CustomStyles.xaml │ ├── ModernTitledWindowStyles.xaml │ ├── Shared │ │ ├── Button.xaml │ │ ├── Copy of ModernTitledWindowStyles.xaml │ │ ├── ModernTitledWindowStyles.xaml │ │ └── TextBlock.xaml │ └── linds.ttf ├── Bootstrapper.cs ├── FodyWeavers.xml ├── Interfaces │ └── INavigationLinkService.cs ├── Log4NetLogger.cs ├── NavigationLinkService.cs ├── NavigationLinksGroup.cs ├── Pages │ ├── Home.xaml │ ├── Home.xaml.cs │ ├── Settings │ │ ├── About.xaml │ │ ├── About.xaml.cs │ │ ├── Appearance.xaml │ │ ├── Appearance.xaml.cs │ │ └── AppearanceViewModel.cs │ ├── SettingsPage.xaml │ └── SettingsPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── Settings.StyleCop ├── Shell.xaml ├── Shell.xaml.cs ├── ShellViewModel.cs ├── StyleCop.Cache ├── SugarDesk.csproj ├── SugarDesk.csproj.user ├── Views │ ├── Home.xaml │ └── Home.xaml.cs ├── log4net.config ├── packages.config ├── sugarcrm_credential_list.json ├── sugarcrm_url_list.json └── sugardesk.ico └── SugarDeskSolution.sln /Demo/1462131504_MB__back.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/1462131504_MB__back.ico -------------------------------------------------------------------------------- /Demo/Assets/1462131504_MB__back.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Assets/1462131504_MB__back.ico -------------------------------------------------------------------------------- /Demo/CsvHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/CsvHelper.dll -------------------------------------------------------------------------------- /Demo/CsvHelper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/CsvHelper.pdb -------------------------------------------------------------------------------- /Demo/CsvHelper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/CsvHelper.xml -------------------------------------------------------------------------------- /Demo/FirstFloor.ModernUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/FirstFloor.ModernUI.dll -------------------------------------------------------------------------------- /Demo/FirstFloor.ModernUI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/FirstFloor.ModernUI.xml -------------------------------------------------------------------------------- /Demo/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/FluentValidation.dll -------------------------------------------------------------------------------- /Demo/FluentValidation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/FluentValidation.pdb -------------------------------------------------------------------------------- /Demo/FluentValidation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/FluentValidation.xml -------------------------------------------------------------------------------- /Demo/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Demo/Inflector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Inflector.dll -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.ServiceLocation.pdb -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.ServiceLocation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.ServiceLocation.xml -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.Unity.Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.Unity.Configuration.xml -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.Unity.RegistrationByConvention.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.Unity.RegistrationByConvention.xml -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /Demo/Microsoft.Practices.Unity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Microsoft.Practices.Unity.xml -------------------------------------------------------------------------------- /Demo/NPOI.OOXML.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/NPOI.OOXML.dll -------------------------------------------------------------------------------- /Demo/NPOI.OpenXml4Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/NPOI.OpenXml4Net.dll -------------------------------------------------------------------------------- /Demo/NPOI.OpenXmlFormats.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/NPOI.OpenXmlFormats.dll -------------------------------------------------------------------------------- /Demo/NPOI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/NPOI.dll -------------------------------------------------------------------------------- /Demo/NPOI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/NPOI.xml -------------------------------------------------------------------------------- /Demo/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Demo/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Demo/Prism.Unity.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Prism.Unity.Wpf.dll -------------------------------------------------------------------------------- /Demo/Prism.Unity.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Prism.Unity.Wpf.xml -------------------------------------------------------------------------------- /Demo/Prism.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Prism.Wpf.dll -------------------------------------------------------------------------------- /Demo/Prism.Wpf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Prism.Wpf.xml -------------------------------------------------------------------------------- /Demo/Prism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Prism.dll -------------------------------------------------------------------------------- /Demo/Prism.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/Prism.xml -------------------------------------------------------------------------------- /Demo/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/RestSharp.dll -------------------------------------------------------------------------------- /Demo/RestSharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/RestSharp.xml -------------------------------------------------------------------------------- /Demo/SpicyTaco.AutoGrid.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SpicyTaco.AutoGrid.dll -------------------------------------------------------------------------------- /Demo/SugarDesk.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Core.dll -------------------------------------------------------------------------------- /Demo/SugarDesk.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Core.pdb -------------------------------------------------------------------------------- /Demo/SugarDesk.PocoGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.PocoGen.dll -------------------------------------------------------------------------------- /Demo/SugarDesk.PocoGen.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.PocoGen.pdb -------------------------------------------------------------------------------- /Demo/SugarDesk.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Reporting.dll -------------------------------------------------------------------------------- /Demo/SugarDesk.Reporting.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Reporting.pdb -------------------------------------------------------------------------------- /Demo/SugarDesk.Restful.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Restful.dll -------------------------------------------------------------------------------- /Demo/SugarDesk.Restful.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Restful.dll.config -------------------------------------------------------------------------------- /Demo/SugarDesk.Restful.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.Restful.pdb -------------------------------------------------------------------------------- /Demo/SugarDesk.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.exe -------------------------------------------------------------------------------- /Demo/SugarDesk.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.exe.config -------------------------------------------------------------------------------- /Demo/SugarDesk.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.pdb -------------------------------------------------------------------------------- /Demo/SugarDesk.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.vshost.exe -------------------------------------------------------------------------------- /Demo/SugarDesk.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.vshost.exe.config -------------------------------------------------------------------------------- /Demo/SugarDesk.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarDesk.vshost.exe.manifest -------------------------------------------------------------------------------- /Demo/SugarRestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/SugarRestSharp.dll -------------------------------------------------------------------------------- /Demo/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /Demo/cs/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/cs/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/da/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/da/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/de/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/de/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/de/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/de/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/en/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/en/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/es/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/es/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/es/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/es/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/fa/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/fa/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/fi/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/fi/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/fr/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/fr/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/fr/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/fr/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/it/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/it/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/it/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/it/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/ja/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/ja/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/ko/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/ko/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/ko/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/ko/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/log4net.dll -------------------------------------------------------------------------------- /Demo/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/log4net.xml -------------------------------------------------------------------------------- /Demo/mk/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/mk/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/modules/SugarDesk.PocoGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/modules/SugarDesk.PocoGen.dll -------------------------------------------------------------------------------- /Demo/modules/SugarDesk.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/modules/SugarDesk.Reporting.dll -------------------------------------------------------------------------------- /Demo/modules/SugarDesk.Restful.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/modules/SugarDesk.Restful.dll -------------------------------------------------------------------------------- /Demo/nl/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/nl/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/pl/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/pl/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/pt/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/pt/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/ru/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/ru/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/ru/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/ru/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/sugarcrm_credential_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/sugarcrm_credential_list.json -------------------------------------------------------------------------------- /Demo/sugarcrm_url_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/sugarcrm_url_list.json -------------------------------------------------------------------------------- /Demo/sv/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/sv/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/tr/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/tr/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/zh-CN/FluentValidation.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/zh-CN/FluentValidation.resources.dll -------------------------------------------------------------------------------- /Demo/zh-Hans/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/zh-Hans/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /Demo/zh-Hant/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Demo/zh-Hant/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/SugarDesk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk01.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk02.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_AddCredential_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_AddCredential_Dialog.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_AddUrl_Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_AddUrl_Dialog.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_Create2_Request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_Create2_Request.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_Create_Request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_Create_Request.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadAll_Request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadAll_Request.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadAll_Request_Progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadAll_Request_Progress.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadAll_Response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadAll_Response.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadById_Request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadById_Request.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadById_Response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadById_Response.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadByPage_Request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadByPage_Request.png -------------------------------------------------------------------------------- /Screenshots/SugarDesk_ReadByPage_Response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/Screenshots/SugarDesk_ReadByPage_Response.png -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/StyleCop.MSBuild.4.7.54.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/StyleCop.MSBuild.4.7.54.0.nupkg -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/build/StyleCop.MSBuild.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/build/StyleCop.MSBuild.Targets -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/license.txt -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/CustomDictionary.en-GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/CustomDictionary.en-GB.xml -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/CustomDictionary.en-US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/CustomDictionary.en-US.xml -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/CustomDictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/CustomDictionary.xml -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/Settings.StyleCop -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCop.CSharp.Rules.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCop.CSharp.Rules.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCop.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCop.CSharp.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCop.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCopSettingsEditor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/StyleCopSettingsEditor.exe -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/de-DE/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/de-DE/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/en-GB/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/en-GB/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/es-MX/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/es-MX/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/fr-FR/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/fr-FR/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/mssp7en.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/mssp7en.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/mssp7en.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/mssp7en.lex -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/pl-PL/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/pl-PL/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/pt-BR/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/pt-BR/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/ru-RU/StyleCop.CSharp.Rules.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/StyleCop.MSBuild.4.7.54.0/tools/ru-RU/StyleCop.CSharp.Rules.resources.dll -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/FodyWeavers.xml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Helpers/VisualChildFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Helpers/VisualChildFinder.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Actions/InvokeCommandWithParamAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Actions/InvokeCommandWithParamAction.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Base/ModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Base/ModelBase.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Base/ViewBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Base/ViewBase.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Base/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Base/ViewModelBase.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Behaviors/DocumentReaderBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Behaviors/DocumentReaderBehavior.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Behaviors/HyperlinkBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Behaviors/HyperlinkBehavior.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Behaviors/WebBrowserSourceBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Behaviors/WebBrowserSourceBehavior.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/BindingProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/BindingProxy.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumMatchToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumMatchToBooleanConverter.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumOptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumOptionType.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumToGridRowHeightConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumToGridRowHeightConverter.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumToGridRowPercentHeightConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/EnumToGridRowPercentHeightConverter.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/GridPercentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Converters/GridPercentType.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Validators/IModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Validators/IModelValidator.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Validators/ModelValidatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Validators/ModelValidatorBase.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Infrastructure/Validators/ValidationErrorsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Infrastructure/Validators/ValidationErrorsContainer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Interfaces/INavigationLinksGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Interfaces/INavigationLinksGroup.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/MenuLinkInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/MenuLinkInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Properties/Resources.resx -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Properties/Settings.settings -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/Settings.StyleCop -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/StyleCop.Cache -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/SugarDesk.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/SugarDesk.Core.csproj -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Core/packages.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/FodyWeavers.xml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/NavigationLinksGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/NavigationLinksGroup.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/PocoGenModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/PocoGenModule.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Properties/Resources.resx -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Properties/Settings.settings -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Settings.StyleCop -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/StyleCop.Cache -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/SugarDesk.PocoGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/SugarDesk.PocoGen.csproj -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/ViewModels/PocoGeneratorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/ViewModels/PocoGeneratorViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Views/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Views/About.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Views/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Views/About.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Views/PocoGenView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Views/PocoGenView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/Views/PocoGenView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/Views/PocoGenView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.PocoGen/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.PocoGen/packages.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/FodyWeavers.xml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/NavigationLinksGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/NavigationLinksGroup.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Properties/Resources.resx -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Properties/Settings.settings -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/ReportingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/ReportingModule.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Settings.StyleCop -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/StyleCop.Cache -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/SugarDesk.Reporting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/SugarDesk.Reporting.csproj -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Views/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Views/About.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Views/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Views/About.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Views/ReportsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Views/ReportsView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/Views/ReportsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/Views/ReportsView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Reporting/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Reporting/packages.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Dialogs/AddCredentialContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Dialogs/AddCredentialContent.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Dialogs/AddUrlContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Dialogs/AddUrlContent.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Dialogs/FormDataContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Dialogs/FormDataContent.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Dialogs/FormDataModernDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Dialogs/FormDataModernDialog.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/FodyWeavers.xml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/CsvProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/CsvProvider.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/DataTableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/DataTableExtensions.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/DateTimeValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/DateTimeValueProvider.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/DeserializerExceptionsContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/DeserializerExceptionsContractResolver.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/ExcelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/ExcelProvider.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/JsonStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/JsonStringExtensions.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/StringExtensions.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Helpers/SugarCrmApiRestful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Helpers/SugarCrmApiRestful.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Messages/AccountMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Messages/AccountMessage.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Messages/EnableButtonMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Messages/EnableButtonMessage.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Messages/UpdateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Messages/UpdateMessage.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/FormModuleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/FormModuleData.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/ListBoxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/ListBoxItem.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/ModelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/ModelInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/ModelProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/ModelProperty.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/ModuleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/ModuleData.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/RestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/RestRequest.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/RestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/RestResponse.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/StringExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/StringExtension.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/SugarCrmAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/SugarCrmAccount.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/SugarCrmCredential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/SugarCrmCredential.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Models/SugarCrmUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Models/SugarCrmUrl.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/NavigationLinksGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/NavigationLinksGroup.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Properties/Resources.resx -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Properties/Settings.settings -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/RestfulModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/RestfulModule.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Settings.StyleCop -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/StyleCop.Cache -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/SugarCrmAccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/SugarCrmAccountService.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/SugarDesk.Restful.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/SugarDesk.Restful.csproj -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Validators/ReadAllViewModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Validators/ReadAllViewModelValidator.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Validators/RestfulViewModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Validators/RestfulViewModelValidator.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/AddCredentialViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/AddCredentialViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/AddUrlViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/AddUrlViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/CreateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/CreateViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/DeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/DeleteViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/FormDataViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/FormDataViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/ReadAllViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/ReadAllViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/ReadByIdViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/ReadByIdViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/ReadByPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/ReadByPageViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/RestfulViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/RestfulViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/RestfulViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/RestfulViewModelBase.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/ViewModels/UpdateViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/ViewModels/UpdateViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/About.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/About.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/AddCredentialContentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/AddCredentialContentView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/AddCredentialContentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/AddCredentialContentView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/AddUrlContentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/AddUrlContentView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/AddUrlContentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/AddUrlContentView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/CreateView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/CreateView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/CreateView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/CreateView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/DeleteView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/DeleteView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/DeleteView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/DeleteView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/FormDataContentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/FormDataContentView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/FormDataContentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/FormDataContentView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/ReadAllView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/ReadAllView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/ReadAllView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/ReadAllView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/ReadByIdView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/ReadByIdView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/ReadByIdView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/ReadByIdView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/ReadByPageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/ReadByPageView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/ReadByPageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/ReadByPageView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/RestfulView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/RestfulView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/RestfulView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/RestfulView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/UpdateView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/UpdateView.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/Views/UpdateView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/Views/UpdateView.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/app.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk.Restful/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk.Restful/packages.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/1462131504_MB__back.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/1462131504_MB__back.ico -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/1462131504_mb__back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/1462131504_mb__back.jpg -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/App.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/App.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/App.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/1462131504_MB__back.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/1462131504_MB__back.ico -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/CustomStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/CustomStyles.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/ModernTitledWindowStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/ModernTitledWindowStyles.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/Shared/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/Shared/Button.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/Shared/Copy of ModernTitledWindowStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/Shared/Copy of ModernTitledWindowStyles.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/Shared/ModernTitledWindowStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/Shared/ModernTitledWindowStyles.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/Shared/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/Shared/TextBlock.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Assets/linds.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Assets/linds.ttf -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Bootstrapper.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/FodyWeavers.xml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Interfaces/INavigationLinkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Interfaces/INavigationLinkService.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Log4NetLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Log4NetLogger.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/NavigationLinkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/NavigationLinkService.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/NavigationLinksGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/NavigationLinksGroup.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Home.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Home.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Settings/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Settings/About.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Settings/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Settings/About.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Settings/Appearance.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Settings/Appearance.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Settings/Appearance.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Settings/Appearance.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/Settings/AppearanceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/Settings/AppearanceViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/SettingsPage.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Pages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Pages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Settings.StyleCop -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Shell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Shell.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Shell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Shell.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/ShellViewModel.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/StyleCop.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/StyleCop.Cache -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/SugarDesk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/SugarDesk.csproj -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/SugarDesk.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/SugarDesk.csproj.user -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Views/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Views/Home.xaml -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/Views/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/Views/Home.xaml.cs -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/log4net.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/packages.config -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/sugarcrm_credential_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/sugarcrm_credential_list.json -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/sugarcrm_url_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/sugarcrm_url_list.json -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDesk/sugardesk.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDesk/sugardesk.ico -------------------------------------------------------------------------------- /SugarDeskSolution/SugarDeskSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattkol/SugarDesk/HEAD/SugarDeskSolution/SugarDeskSolution.sln --------------------------------------------------------------------------------