├── src ├── Noses │ ├── red.png │ ├── black.png │ ├── purple.png │ ├── rainbow.png │ └── noses.json ├── Knowzy_Shipping_WebApp │ └── src │ │ ├── 1. WebApp │ │ └── Microsoft.Knowzy.WebApp │ │ │ ├── .bowerrc │ │ │ ├── wwwroot │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ │ ├── pink.png │ │ │ │ ├── red.png │ │ │ │ ├── bg art.png │ │ │ │ ├── clowns.png │ │ │ │ ├── yellow.png │ │ │ │ ├── menu-bar1.png │ │ │ │ ├── Knowz-logo.png │ │ │ │ └── bottom-bar.png │ │ │ ├── fonts │ │ │ │ ├── segoeui │ │ │ │ │ ├── segoeui.eot │ │ │ │ │ ├── segoeui.ttf │ │ │ │ │ └── segoeui.woff │ │ │ │ └── segoemdl2 │ │ │ │ │ ├── segoemdl2.eot │ │ │ │ │ ├── segoemdl2.ttf │ │ │ │ │ └── segoemdl2.woff │ │ │ ├── css │ │ │ │ ├── footer.css │ │ │ │ └── edit.css │ │ │ ├── web.config │ │ │ ├── js │ │ │ │ └── site.js │ │ │ └── Data │ │ │ │ └── products.json │ │ │ ├── Views │ │ │ ├── Receivings │ │ │ │ ├── Edit.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shippings │ │ │ │ └── Edit.cshtml │ │ │ ├── Shared │ │ │ │ ├── OrderLines.cshtml │ │ │ │ ├── DisplayTemplates │ │ │ │ │ └── OrderLineViewModel.cshtml │ │ │ │ ├── EditorTemplates │ │ │ │ │ └── OrderLineViewModel.cshtml │ │ │ │ ├── Footer.cshtml │ │ │ │ └── Error.cshtml │ │ │ ├── _ViewStart.cshtml │ │ │ └── _ViewImports.cshtml │ │ │ ├── bower.json │ │ │ ├── bundleconfig.json │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── Program.cs │ │ ├── 3. Domain │ │ ├── Microsoft.Knowzy.Domain │ │ │ ├── Microsoft.Knowzy.Domain.csproj │ │ │ ├── Shipping.cs │ │ │ ├── Receiving.cs │ │ │ ├── OrderStatus.cs │ │ │ ├── PostalCarrier.cs │ │ │ ├── OrderLine.cs │ │ │ ├── Customer.cs │ │ │ └── Product.cs │ │ └── Microsoft.Knowzy.Models │ │ │ ├── Microsoft.Knowzy.Models.csproj │ │ │ ├── ViewModels │ │ │ ├── ReceivingViewModel.cs │ │ │ ├── ShippingViewModel.cs │ │ │ ├── ReceivingsViewModel.cs │ │ │ ├── ShippingsViewModel.cs │ │ │ ├── OrdersViewModel.cs │ │ │ └── Validators │ │ │ │ └── OrderLineViewModelValidator.cs │ │ │ ├── OrderImport.cs │ │ │ └── Profiles │ │ │ ├── ShippingProfile.cs │ │ │ └── ReceivingProfile.cs │ │ └── 2. Services │ │ └── Repositories │ │ ├── Micrososft.Knowzy.Repositories.Contracts │ │ └── Micrososft.Knowzy.Repositories.Contracts.csproj │ │ └── Microsoft.Knowzy.Repositories.Core │ │ ├── Microsoft.Knowzy.Repositories.Core.csproj │ │ └── OrderRepositoryHelper.cs ├── Knowzy_Inventory_Win32App │ ├── src │ │ ├── Microsoft.Knowzy.ConfigurationService │ │ │ ├── Config.json │ │ │ ├── ConfigurationModel.cs │ │ │ ├── ConfigurationService.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.WPF │ │ │ ├── AppBootstrapper.cs │ │ │ ├── Assets │ │ │ │ ├── Fonts │ │ │ │ │ ├── segoeui.ttf │ │ │ │ │ ├── segoeuib.ttf │ │ │ │ │ └── segoeuil.ttf │ │ │ │ ├── Kidnose400x300.jpg │ │ │ │ ├── Frabicnose400x300.jpg │ │ │ │ ├── Purplenose400x300.jpg │ │ │ │ ├── blacknose400x300.jpg │ │ │ │ ├── Oversizenose400x300.jpg │ │ │ │ └── Rainbownose400x300.jpg │ │ │ ├── Messages │ │ │ │ ├── UpdateLanesMessage.cs │ │ │ │ ├── OpenAboutMessage.cs │ │ │ │ ├── OpenLoginMessage.cs │ │ │ │ └── EditItemMessage.cs │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ ├── Settings.settings │ │ │ │ ├── DesignTimeResources.xaml │ │ │ │ └── Settings.Designer.cs │ │ │ ├── packages.config │ │ │ ├── App.xaml.cs │ │ │ ├── ViewModels │ │ │ │ ├── AboutViewModel.cs │ │ │ │ └── Models │ │ │ │ │ └── StatusLaneViewModel.cs │ │ │ ├── Views │ │ │ │ ├── MainView.xaml.cs │ │ │ │ ├── AboutView.xaml.cs │ │ │ │ ├── LoginView.xaml.cs │ │ │ │ ├── ShellView.xaml.cs │ │ │ │ ├── EditItemView.xaml.cs │ │ │ │ ├── KanbanView.xaml.cs │ │ │ │ ├── ListProductsView.xaml.cs │ │ │ │ ├── ShellView.xaml │ │ │ │ └── AboutView.xaml │ │ │ ├── Themes │ │ │ │ ├── Fonts.xaml │ │ │ │ ├── Converters.xaml │ │ │ │ └── FontSizes.xaml │ │ │ ├── Converters │ │ │ │ └── CascadeLevelToMarginConverter.cs │ │ │ └── Helpers │ │ │ │ └── FileHelper.cs │ │ ├── Microsoft.Knowzy.UWP │ │ │ ├── Assets │ │ │ │ ├── StoreLogo.png │ │ │ │ ├── LargeTile.scale-100.png │ │ │ │ ├── LargeTile.scale-125.png │ │ │ │ ├── LargeTile.scale-150.png │ │ │ │ ├── LargeTile.scale-200.png │ │ │ │ ├── LargeTile.scale-400.png │ │ │ │ ├── SmallTile.scale-100.png │ │ │ │ ├── SmallTile.scale-125.png │ │ │ │ ├── SmallTile.scale-150.png │ │ │ │ ├── SmallTile.scale-200.png │ │ │ │ ├── SmallTile.scale-400.png │ │ │ │ ├── logo_master_square.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ ├── SplashScreen.scale-125.png │ │ │ │ ├── SplashScreen.scale-150.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── SplashScreen.scale-400.png │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ ├── Wide310x150Logo.scale-400.png │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ │ └── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── Images │ │ │ │ ├── Kidnose400x300.png │ │ │ │ ├── Frabicnose400x300.png │ │ │ │ ├── Purplenose400x300.png │ │ │ │ ├── blacknose400x300.png │ │ │ │ ├── Oversizenose400x300.png │ │ │ │ └── Rainbownose400x300.png │ │ │ ├── ViewModels │ │ │ │ └── ChartData.cs │ │ │ ├── App.xaml │ │ │ ├── EditItemView.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Helpers │ │ │ │ └── ImageSourceToPathConverter.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ ├── Microsoft.Knowzy.Domain │ │ │ ├── Enums │ │ │ │ └── DevelopmentStatus.cs │ │ │ ├── Product.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.Xamarin.Android │ │ │ ├── Resources │ │ │ │ ├── drawable │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ └── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── MainPageRenderer.cs │ │ │ ├── packages.config │ │ │ └── MainActivity.cs │ │ ├── Microsoft.Knowzy.Common │ │ │ ├── Contracts │ │ │ │ ├── Helpers │ │ │ │ │ ├── IJsonHelper.cs │ │ │ │ │ └── IFileHelper.cs │ │ │ │ ├── IConfigurationService.cs │ │ │ │ ├── IConfigurationModel.cs │ │ │ │ ├── IDataProvider.cs │ │ │ │ └── IAuthenticationService.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.Web │ │ │ ├── wwwroot │ │ │ │ └── cross-platform-identifiers │ │ │ ├── Microsoft.Knowzy.Web.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ └── Startup.cs │ │ ├── Microsoft.Knowzy.NET.DAL │ │ │ ├── KnowzyDataSet.cs │ │ │ ├── KnowzyDataSet.xsc │ │ │ ├── app.config │ │ │ ├── KnowzyDataSet.xss │ │ │ └── Properties │ │ │ │ ├── Settings.settings │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.Xamarin │ │ │ ├── Constants.cs │ │ │ ├── Model │ │ │ │ ├── InventoryModel.cs │ │ │ │ ├── VisualInfo.cs │ │ │ │ ├── Activity.cs │ │ │ │ └── HistoryItem.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── App.cs │ │ │ └── Services │ │ │ │ └── MockInventoryService.cs │ │ ├── Microsoft.Knowzy.AuthenticationService │ │ │ ├── AuthenticationService.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.NET.BLL │ │ │ ├── ProductInventoryMapper.cs │ │ │ ├── SqlDataProvider.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Microsoft.Knowzy.JsonDataProvider │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Database │ │ └── instknowzydb.sql │ ├── ReferencedAssemblies │ │ └── System.Data.DataSetExtensions.dll │ └── README.md ├── Knowzy_Engineering_Win32App │ ├── src │ │ ├── Microsoft.Knowzy.ConfigurationService │ │ │ ├── Config.json │ │ │ ├── ConfigurationModel.cs │ │ │ ├── ConfigurationService.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.WPF │ │ │ ├── AppBootstrapper.cs │ │ │ ├── Assets │ │ │ │ ├── Fonts │ │ │ │ │ ├── segoeui.ttf │ │ │ │ │ ├── segoeuib.ttf │ │ │ │ │ └── segoeuil.ttf │ │ │ │ ├── Kidnose400x300.jpg │ │ │ │ ├── Frabicnose400x300.jpg │ │ │ │ ├── Purplenose400x300.jpg │ │ │ │ ├── Rainbownose400x300.jpg │ │ │ │ ├── blacknose400x300.jpg │ │ │ │ └── Oversizenose400x300.jpg │ │ │ ├── Messages │ │ │ │ ├── UpdateLanesMessage.cs │ │ │ │ ├── OpenAboutMessage.cs │ │ │ │ ├── OpenLoginMessage.cs │ │ │ │ └── EditItemMessage.cs │ │ │ ├── App.config │ │ │ ├── Properties │ │ │ │ ├── Settings.settings │ │ │ │ ├── DesignTimeResources.xaml │ │ │ │ └── Settings.Designer.cs │ │ │ ├── packages.config │ │ │ ├── App.xaml.cs │ │ │ ├── ViewModels │ │ │ │ ├── AboutViewModel.cs │ │ │ │ └── Models │ │ │ │ │ └── StatusLaneViewModel.cs │ │ │ ├── Views │ │ │ │ ├── AboutView.xaml.cs │ │ │ │ ├── LoginView.xaml.cs │ │ │ │ ├── MainView.xaml.cs │ │ │ │ ├── ShellView.xaml.cs │ │ │ │ ├── EditItemView.xaml.cs │ │ │ │ ├── KanbanView.xaml.cs │ │ │ │ ├── ListProductsView.xaml.cs │ │ │ │ ├── ShellView.xaml │ │ │ │ └── AboutView.xaml │ │ │ ├── Themes │ │ │ │ ├── Fonts.xaml │ │ │ │ ├── Converters.xaml │ │ │ │ └── FontSizes.xaml │ │ │ ├── Converters │ │ │ │ └── CascadeLevelToMarginConverter.cs │ │ │ └── Helpers │ │ │ │ └── FileHelper.cs │ │ ├── Microsoft.Knowzy.Domain │ │ │ ├── Enums │ │ │ │ └── DevelopmentStatus.cs │ │ │ ├── Product.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.Common │ │ │ ├── Contracts │ │ │ │ ├── Helpers │ │ │ │ │ ├── IJsonHelper.cs │ │ │ │ │ └── IFileHelper.cs │ │ │ │ ├── IConfigurationService.cs │ │ │ │ ├── IConfigurationModel.cs │ │ │ │ ├── IDataProvider.cs │ │ │ │ └── IAuthenticationService.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Microsoft.Knowzy.AuthenticationService │ │ │ ├── AuthenticationService.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Microsoft.Knowzy.JsonDataProvider │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── README.md └── Tools │ ├── Tools.sln │ └── CustomVisionTrainer │ ├── App.config │ └── Properties │ └── AssemblyInfo.cs ├── README.md └── LICENSE /src/Noses/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Noses/red.png -------------------------------------------------------------------------------- /src/Noses/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Noses/black.png -------------------------------------------------------------------------------- /src/Noses/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Noses/purple.png -------------------------------------------------------------------------------- /src/Noses/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Noses/rainbow.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.ConfigurationService/Config.json: -------------------------------------------------------------------------------- 1 | { 2 | "JsonFilePath": "Products.json", 3 | "DataSourceUrl": "http://" 4 | } -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.ConfigurationService/Config.json: -------------------------------------------------------------------------------- 1 | { 2 | "JsonFilePath": "Products.json", 3 | "DataSourceUrl": "http://" 4 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/Database/instknowzydb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/Database/instknowzydb.sql -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeui.ttf -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Kidnose400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Kidnose400x300.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeui.ttf -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuib.ttf -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuil.ttf -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Kidnose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Kidnose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuib.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuib.ttf -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuil.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Fonts/segoeuil.ttf -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Kidnose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Kidnose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Frabicnose400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Frabicnose400x300.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Purplenose400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Purplenose400x300.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/blacknose400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/blacknose400x300.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Frabicnose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Frabicnose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Purplenose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Purplenose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/blacknose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/blacknose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Domain/Enums/DevelopmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Domain/Enums/DevelopmentStatus.cs -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Frabicnose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Frabicnose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Purplenose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Purplenose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Rainbownose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Rainbownose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/blacknose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/blacknose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/ReferencedAssemblies/System.Data.DataSetExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/ReferencedAssemblies/System.Data.DataSetExtensions.dll -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Domain/Enums/DevelopmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Domain/Enums/DevelopmentStatus.cs -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/logo_master_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/logo_master_square.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Oversizenose400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Oversizenose400x300.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Rainbownose400x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Images/Rainbownose400x300.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Oversizenose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Oversizenose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Rainbownose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Assets/Rainbownose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Messages/UpdateLanesMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Messages/UpdateLanesMessage.cs -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Oversizenose400x300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Assets/Oversizenose400x300.jpg -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Messages/UpdateLanesMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Messages/UpdateLanesMessage.cs -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/pink.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/red.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/bg art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/bg art.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/clowns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/clowns.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/yellow.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Receivings/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Receivings/Edit.cshtml -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shippings/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shippings/Edit.cshtml -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/menu-bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/menu-bar1.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Receivings/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Receivings/Index.cshtml -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/OrderLines.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/OrderLines.cshtml -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/Knowz-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/Knowz-logo.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/bottom-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/images/bottom-bar.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoeui/segoeui.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoeui/segoeui.eot -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoeui/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoeui/segoeui.ttf -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoeui/segoeui.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoeui/segoeui.woff -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoemdl2/segoemdl2.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoemdl2/segoemdl2.eot -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoemdl2/segoemdl2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoemdl2/segoemdl2.ttf -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoemdl2/segoemdl2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/fonts/segoemdl2/segoemdl2.woff -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Adventure Works Knowzy Internal Apps Repository 2 | 3 | This repository contains the source code for all the internal apps used here at Knowzy, a subsidiary of the Adventure Works Company. 4 | 5 | Use our [backlog to get started](http://bthack.azurewebsites.net/). 6 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/DisplayTemplates/OrderLineViewModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/DisplayTemplates/OrderLineViewModel.cshtml -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/EditorTemplates/OrderLineViewModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/HEAD/src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/EditorTemplates/OrderLineViewModel.cshtml -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Contracts/Helpers/IJsonHelper.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Knowzy.Common.Contracts.Helpers 2 | { 3 | public interface IJsonHelper 4 | { 5 | T Deserialize(string serializedObject); 6 | string Serialize(T objectToSerialize); 7 | } 8 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Contracts/Helpers/IJsonHelper.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Knowzy.Common.Contracts.Helpers 2 | { 3 | public interface IJsonHelper 4 | { 5 | T Deserialize(string serializedObject); 6 | string Serialize(T objectToSerialize); 7 | } 8 | } -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "asp.net", 3 | "private": true, 4 | "dependencies": { 5 | "bootstrap": "3.3.7", 6 | "jquery": "2.2.0", 7 | "jquery-validation": "1.14.0", 8 | "jquery-validation-unobtrusive": "3.2.6" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Web/wwwroot/cross-platform-identifiers: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "platform": "windows_universal", 4 | "application": "0e9426a1-0341-4e86-a33c-4f4c5c02ba12_rkjxvw9zmwpp0" 5 | }, 6 | { 7 | "platform": "android", 8 | "application": "microsoft.knowzy.xamarin.android" 9 | } 10 | ] -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Contracts/Helpers/IFileHelper.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Knowzy.Common.Contracts.Helpers 2 | { 3 | public interface IFileHelper 4 | { 5 | string ActualPath { get; } 6 | string ReadTextFile(string filePath); 7 | void WriteTextFile(string filePath, string content); 8 | } 9 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Contracts/Helpers/IFileHelper.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Knowzy.Common.Contracts.Helpers 2 | { 3 | public interface IFileHelper 4 | { 5 | string ActualPath { get; } 6 | string ReadTextFile(string filePath); 7 | void WriteTextFile(string filePath, string content); 8 | } 9 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.DAL/KnowzyDataSet.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Knowzy.NET.DAL 2 | { 3 | 4 | 5 | partial class KnowzyDataSet 6 | { 7 | } 8 | } 9 | 10 | namespace Microsoft.Knowzy.NET.DAL.KnowzyDataSetTableAdapters { 11 | 12 | 13 | public partial class InventoryTableAdapter { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/css/footer.css: -------------------------------------------------------------------------------- 1 | footer .bar { 2 | background: url("../images/bottom-bar.png"); 3 | height: 68px; 4 | } 5 | 6 | footer .text { 7 | height: 189px; 8 | background-color: #333333; 9 | color: white; 10 | padding: 40px 0 0 50px; 11 | font-size: 16px; 12 | } 13 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Web/Microsoft.Knowzy.Web.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Constants.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Microsoft.Knowzy.Xamarin 8 | { 9 | public static class Constants 10 | { 11 | public static string GRAPH_BASE_URI = "https://graph.microsoft.com/beta"; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/ViewModels/ChartData.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Microsoft.Knowzy.UWP.ViewModels 8 | { 9 | public class ChartData 10 | { 11 | public string Category { get; set; } 12 | 13 | public double Value { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/Microsoft.Knowzy.Domain.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | 6 | 7 | 8 | $(SolutionDir)\bin\Debug\netcoreapp1.1\ 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.DAL/KnowzyDataSet.xsc: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/App.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Properties/DesignTimeResources.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Properties/DesignTimeResources.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.DAL/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Model/InventoryModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Microsoft.Knowzy.Xamarin.Model 8 | { 9 | public class InventoryModel 10 | { 11 | public string InventoryId { get; set; } 12 | 13 | public string Engineer { get; set; } 14 | 15 | public string Name { get; set; } 16 | 17 | public string RawMaterial { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/2. Services/Repositories/Micrososft.Knowzy.Repositories.Contracts/Micrososft.Knowzy.Repositories.Contracts.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Model/VisualInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Microsoft.Knowzy.Xamarin.Model 8 | { 9 | // includes required and server set properties only for now 10 | // full list here: https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/resources/projectrome_visualinfo 11 | public class VisualInfo 12 | { 13 | public string DisplayText { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/css/edit.css: -------------------------------------------------------------------------------- 1 | .form-input { 2 | border-radius: 0; 3 | border: 1px solid black; 4 | } 5 | 6 | .form-quantity { max-width: 50px; } 7 | 8 | .add-item { 9 | line-height: 40px; 10 | height: 40px; 11 | margin-left: 20px; 12 | color: #0078d7; 13 | font-size: 16px; 14 | width: 135px; 15 | } 16 | 17 | .add-item:hover { 18 | cursor: pointer; 19 | } 20 | 21 | .button-action .glyphicon { 22 | margin-right: 15px; 23 | } 24 | 25 | table .delete-button:hover { 26 | color: #0078d7; 27 | cursor: pointer; 28 | } -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/Microsoft.Knowzy.Models.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | 6 | 7 | 8 | $(SolutionDir)\bin\Debug\netcoreapp1.1\ 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Web/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Threading.Tasks; 6 | using Microsoft.AspNetCore; 7 | using Microsoft.AspNetCore.Hosting; 8 | using Microsoft.Extensions.Configuration; 9 | using Microsoft.Extensions.Logging; 10 | 11 | namespace Microsoft.Knowzy.Web 12 | { 13 | public class Program 14 | { 15 | public static void Main(string[] args) 16 | { 17 | BuildWebHost(args).Run(); 18 | } 19 | 20 | public static IWebHost BuildWebHost(string[] args) => 21 | WebHost.CreateDefaultBuilder(args) 22 | .UseStartup() 23 | .Build(); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:61750/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "Microsoft.Knowzy.Web": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:61751/" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/bundleconfig.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "outputFileName": "wwwroot/css/site.min.css", 4 | // An array of relative input file paths. Globbing patterns supported 5 | "inputFiles": [ 6 | "wwwroot/css/site.css", 7 | "wwwroot/css/detail.css", 8 | "wwwroot/css/edit.css", 9 | "wwwroot/css/footer.css", 10 | "wwwroot/css/grid.css", 11 | "wwwroot/css/header.css" 12 | ] 13 | }, 14 | { 15 | "outputFileName": "wwwroot/js/site.min.js", 16 | "inputFiles": [ 17 | "wwwroot/js/site.js" 18 | ], 19 | // Optionally specify minification options 20 | "minify": { 21 | "enabled": true, 22 | "renameLocals": true 23 | }, 24 | // Optionally generate .map file 25 | "sourceMap": false 26 | } 27 | ] 28 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:5023/", 7 | "sslPort": 0 8 | } 9 | }, 10 | "profiles": { 11 | "IIS Express": { 12 | "commandName": "IISExpress", 13 | "launchBrowser": true, 14 | "environmentVariables": { 15 | "ASPNETCORE_ENVIRONMENT": "Development" 16 | } 17 | }, 18 | "Microsoft.Knowzy.WebApp": { 19 | "commandName": "Project", 20 | "launchBrowser": true, 21 | "environmentVariables": { 22 | "ASPNETCORE_ENVIRONMENT": "Development" 23 | }, 24 | "applicationUrl": "http://localhost:5024" 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @*// ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // *******************************************************************@ 12 | 13 | @{ 14 | Layout = "_Layout"; 15 | } 16 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/Shipping.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Domain 14 | { 15 | public class Shipping : Order { } 16 | } 17 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/Receiving.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Domain 14 | { 15 | public class Receiving : Order { } 16 | } 17 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/2. Services/Repositories/Microsoft.Knowzy.Repositories.Core/Microsoft.Knowzy.Repositories.Core.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp2.0 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.DAL/KnowzyDataSet.xss: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Messages/OpenAboutMessage.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Messages 16 | { 17 | public class OpenAboutMessage 18 | { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Messages/OpenLoginMessage.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Messages 16 | { 17 | public class OpenLoginMessage 18 | { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Messages/OpenAboutMessage.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Messages 16 | { 17 | public class OpenAboutMessage 18 | { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Messages/OpenLoginMessage.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Messages 16 | { 17 | public class OpenLoginMessage 18 | { 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/ViewModels/ReceivingViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Models.ViewModels 14 | { 15 | public class ReceivingViewModel : OrderViewModel { } 16 | } 17 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/ViewModels/ShippingViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Models.ViewModels 14 | { 15 | public class ShippingViewModel : OrderViewModel { } 16 | } 17 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/ViewModels/ReceivingsViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Models.ViewModels 14 | { 15 | public class ReceivingsViewModel : OrdersViewModel { } 16 | } 17 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/ViewModels/ShippingsViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Models.ViewModels 14 | { 15 | public class ShippingsViewModel : OrdersViewModel { } 16 | } 17 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/App.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Windows; 16 | 17 | namespace Microsoft.Knowzy.WPF 18 | { 19 | public partial class App : Application 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/App.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Windows; 16 | 17 | namespace Microsoft.Knowzy.WPF 18 | { 19 | public partial class App : Application 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Caliburn.Micro; 16 | 17 | namespace Microsoft.Knowzy.WPF.ViewModels 18 | { 19 | public class AboutViewModel : Screen 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Caliburn.Micro; 16 | 17 | namespace Microsoft.Knowzy.WPF.ViewModels 18 | { 19 | public class AboutViewModel : Screen 20 | { 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/Footer.cshtml: -------------------------------------------------------------------------------- 1 | @*// ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // *******************************************************************@ 12 | 13 |
14 |
15 |
© 2017 - Adventure Works Knowzy. All rights reserved
16 |
17 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/EditItemView.xaml: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/MainPage.xaml: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @*// ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // *******************************************************************@ 12 | 13 | @using Microsoft.Knowzy.WebApp 14 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 15 | @addTagHelper Microsoft.Knowzy.WebApp.TagHelpers.ActiveItemTagHelper, Microsoft.Knowzy.WebApp 16 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/README.md: -------------------------------------------------------------------------------- 1 | #Introduction 2 | TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project. 3 | 4 | #Getting Started 5 | TODO: Guide users through getting your code up and running on their own system. In this section you can talk about: 6 | 1. Installation process 7 | 2. Software dependencies 8 | 3. Latest releases 9 | 4. API references 10 | 11 | #Build and Test 12 | TODO: Describe and show how to build your code and run the tests. 13 | 14 | #Contribute 15 | TODO: Explain how other users and developers can contribute to make your code better. 16 | 17 | If you want to learn more about creating good readme files then refer the following [guidelines](https://www.visualstudio.com/en-us/docs/git/create-a-readme). You can also seek inspiration from the below readme files: 18 | - [ASP.NET Core](https://github.com/aspnet/Home) 19 | - [Visual Studio Code](https://github.com/Microsoft/vscode) 20 | - [Chakra Core](https://github.com/Microsoft/ChakraCore) -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Contracts/IConfigurationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Common.Contracts 16 | { 17 | public interface IConfigurationService 18 | { 19 | IConfigurationModel Configuration { get; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/README.md: -------------------------------------------------------------------------------- 1 | #Introduction 2 | TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project. 3 | 4 | #Getting Started 5 | TODO: Guide users through getting your code up and running on their own system. In this section you can talk about: 6 | 1. Installation process 7 | 2. Software dependencies 8 | 3. Latest releases 9 | 4. API references 10 | 11 | #Build and Test 12 | TODO: Describe and show how to build your code and run the tests. 13 | 14 | #Contribute 15 | TODO: Explain how other users and developers can contribute to make your code better. 16 | 17 | If you want to learn more about creating good readme files then refer the following [guidelines](https://www.visualstudio.com/en-us/docs/git/create-a-readme). You can also seek inspiration from the below readme files: 18 | - [ASP.NET Core](https://github.com/aspnet/Home) 19 | - [Visual Studio Code](https://github.com/Microsoft/vscode) 20 | - [Chakra Core](https://github.com/Microsoft/ChakraCore) -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Contracts/IConfigurationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Common.Contracts 16 | { 17 | public interface IConfigurationService 18 | { 19 | IConfigurationModel Configuration { get; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/MainPageRenderer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | using Android.App; 7 | using Android.Content; 8 | using Android.OS; 9 | using Android.Runtime; 10 | using Android.Views; 11 | using Android.Widget; 12 | using Microsoft.Identity.Client; 13 | using Xamarin.Forms.Platform.Android; 14 | using Microsoft.Knowzy.Xamarin; 15 | using Xamarin.Forms; 16 | using Microsoft.Knowzy.Xamarin.Android; 17 | 18 | [assembly: ExportRenderer(typeof(MainPage), typeof(MainPageRenderer))] 19 | namespace Microsoft.Knowzy.Xamarin.Android 20 | { 21 | class MainPageRenderer : PageRenderer 22 | { 23 | MainPage page; 24 | 25 | protected override void OnElementChanged(ElementChangedEventArgs e) 26 | { 27 | base.OnElementChanged(e); 28 | page = e.NewElement as MainPage; 29 | var activity = this.Context as Activity; 30 | } 31 | 32 | } 33 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Helpers/ImageSourceToPathConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using Windows.UI.Xaml.Data; 7 | using Windows.UI.Xaml.Media.Imaging; 8 | 9 | namespace Microsoft.Knowzy.UWP.Helpers 10 | { 11 | public class ImageSourceToPathConverter : IValueConverter 12 | { 13 | public object Convert(object value, Type targetType, object parameter, string language) 14 | { 15 | if (value == null) return null; 16 | 17 | var imageSourceRedirect = $"ms-appx:///Images/{value.ToString().Replace(".jpg", ".png")}"; 18 | 19 | BitmapImage bmp = new BitmapImage(new Uri(imageSourceRedirect)); 20 | 21 | return bmp; 22 | } 23 | 24 | public object ConvertBack(object value, Type targetType, object parameter, string language) 25 | { 26 | throw new NotImplementedException(); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class MainView 18 | { 19 | public MainView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | { 14 | "Logging": { 15 | "IncludeScopes": false, 16 | "LogLevel": { 17 | "Default": "Debug", 18 | "System": "Information", 19 | "Microsoft": "Information" 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class AboutView 18 | { 19 | public AboutView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class LoginView 18 | { 19 | public LoginView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class MainView 18 | { 19 | public MainView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/ShellView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class ShellView 18 | { 19 | public ShellView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Contracts/IConfigurationModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Common.Contracts 16 | { 17 | public interface IConfigurationModel 18 | { 19 | string JsonFilePath { get; } 20 | string DataSourceUrl { get; } 21 | } 22 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/AboutView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class AboutView 18 | { 19 | public AboutView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class LoginView 18 | { 19 | public LoginView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/ShellView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class ShellView 18 | { 19 | public ShellView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Contracts/IConfigurationModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Common.Contracts 16 | { 17 | public interface IConfigurationModel 18 | { 19 | string JsonFilePath { get; } 20 | string DataSourceUrl { get; } 21 | } 22 | } -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/EditItemView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class EditItemView 18 | { 19 | public EditItemView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/EditItemView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.WPF.Views 16 | { 17 | public partial class EditItemView 18 | { 19 | public EditItemView() 20 | { 21 | InitializeComponent(); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Contracts/IDataProvider.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.Domain; 16 | 17 | namespace Microsoft.Knowzy.Common.Contracts 18 | { 19 | public interface IDataProvider 20 | { 21 | Product[] GetData(); 22 | void SetData(Product[] products); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Contracts/IDataProvider.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.Domain; 16 | 17 | namespace Microsoft.Knowzy.Common.Contracts 18 | { 19 | public interface IDataProvider 20 | { 21 | Product[] GetData(); 22 | void SetData(Product[] products); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Contracts/IAuthenticationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Authentication 16 | { 17 | public interface IAuthenticationService 18 | { 19 | void Login(string name, string password); 20 | void Logout(); 21 | string UserLogged { get; } 22 | } 23 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Contracts/IAuthenticationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Authentication 16 | { 17 | public interface IAuthenticationService 18 | { 19 | void Login(string name, string password); 20 | void Logout(); 21 | string UserLogged { get; } 22 | } 23 | } -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/OrderStatus.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.ComponentModel.DataAnnotations; 14 | 15 | namespace Microsoft.Knowzy.Domain 16 | { 17 | public enum OrderStatus 18 | { 19 | Pending, 20 | [Display(Name="In Transit")] 21 | InTransit, 22 | Delivered 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Tools/Tools.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.26430.6 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomVisionTrainer", "CustomVisionTrainer\CustomVisionTrainer.csproj", "{CFF9EE1C-EA53-4EED-8381-E0895AB938BD}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {CFF9EE1C-EA53-4EED-8381-E0895AB938BD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {CFF9EE1C-EA53-4EED-8381-E0895AB938BD}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {CFF9EE1C-EA53-4EED-8381-E0895AB938BD}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {CFF9EE1C-EA53-4EED-8381-E0895AB938BD}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/KanbanView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Windows.Controls; 16 | 17 | namespace Microsoft.Knowzy.WPF.Views 18 | { 19 | public partial class KanbanView : UserControl 20 | { 21 | public KanbanView() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/KanbanView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Windows.Controls; 16 | 17 | namespace Microsoft.Knowzy.WPF.Views 18 | { 19 | public partial class KanbanView : UserControl 20 | { 21 | public KanbanView() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Model/Activity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Microsoft.Knowzy.Xamarin.Model 8 | { 9 | // includes required and server set properties only for now 10 | // full list here: https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/resources/projectrome_activity 11 | public class Activity 12 | { 13 | // server 14 | public DateTimeOffset CreatedDateTime { get; set; } 15 | 16 | // server 17 | public DateTimeOffset LastModifiedDateTime { get; set; } 18 | 19 | // server 20 | public string Id { get; set; } 21 | 22 | // required 23 | public string AppActivityId { get; set; } 24 | 25 | // required 26 | public string ActivitySourceHost { get; set; } 27 | 28 | // required 29 | public string ActivationUrl { get; set; } 30 | 31 | // required 32 | public VisualInfo VisualElements { get; set; } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/Tools/CustomVisionTrainer/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/ListProductsView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Windows.Controls; 16 | 17 | namespace Microsoft.Knowzy.WPF.Views 18 | { 19 | public partial class ListProductsView : UserControl 20 | { 21 | public ListProductsView() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/ListProductsView.xaml.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Windows.Controls; 16 | 17 | namespace Microsoft.Knowzy.WPF.Views 18 | { 19 | public partial class ListProductsView : UserControl 20 | { 21 | public ListProductsView() 22 | { 23 | InitializeComponent(); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/PostalCarrier.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.Collections.Generic; 14 | 15 | namespace Microsoft.Knowzy.Domain 16 | { 17 | public class PostalCarrier 18 | { 19 | public int Id { get; set; } 20 | public string Name { get; set; } 21 | public virtual ICollection Orders { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/OrderImport.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.Collections.Generic; 14 | using Microsoft.Knowzy.Domain; 15 | 16 | namespace Microsoft.Knowzy.Models 17 | { 18 | public class OrderImport 19 | { 20 | public List Receivings { get; set; } 21 | public List Shippings { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/ShellView.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/ShellView.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/appsettings.json: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | { 14 | "Logging": { 15 | "IncludeScopes": false, 16 | "LogLevel": { 17 | "Default": "Warning" 18 | } 19 | }, 20 | "AppSettings": { 21 | "ProductJsonPath": "Data/products.json", 22 | "CustomerJsonPath": "Data/customers.json", 23 | "OrderJsonPath": "Data/orders.json" 24 | } 25 | } -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | $('#addItem').on('click', function () { 3 | var actualItems = []; 4 | $("table").find(".itemNumber").each(function () { 5 | actualItems.push($(this).text().trim()); 6 | }); 7 | 8 | $.get("/Shippings/AddOrderItem", 9 | $.param({ 'productIds': actualItems }, true), function (partialView) { 10 | var tableBody = $('table tbody'); 11 | tableBody.fadeIn(400, 12 | function () { 13 | tableBody.append(partialView); 14 | }); 15 | }); 16 | (actualItems.length === 3) ? $('#addItem').removeClass('show').hide() : $('#addItem').show(); 17 | }); 18 | 19 | $("table").on("click", ".delete-button", function(event) { 20 | event.preventDefault(); 21 | var tr = $(this).closest('tr'); 22 | tr.fadeOut(400, 23 | function() { 24 | tr.remove(); 25 | $('#addItem').removeClass('hide').show(); 26 | }); 27 | }); 28 | }); 29 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Model/HistoryItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Microsoft.Knowzy.Xamarin.Model 8 | { 9 | // full list here: https://developer.microsoft.com/en-us/graph/docs/api-reference/beta/resources/projectrome_historyitem 10 | public class HistoryItem 11 | { 12 | //public enum StatusCode { active, updated, deleted, ignored } 13 | 14 | //// server 15 | //public StatusCode Status { get; set; } 16 | 17 | //// server 18 | //public DateTimeOffset CreatedDateTime { get; set; } 19 | 20 | //// server 21 | //public DateTimeOffset LastModifiedDateTime { get; set; } 22 | 23 | //// required 24 | //public string Id { get; set; } 25 | 26 | // required 27 | public DateTimeOffset StartedDateTime { get; set; } 28 | 29 | // optional 30 | public DateTimeOffset LastActiveDateTime { get; set; } 31 | 32 | public string UserTimezone { get; set; } 33 | 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.ConfigurationService/ConfigurationModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.Common.Contracts; 16 | 17 | namespace Microsoft.Knowzy.Configuration 18 | { 19 | public class ConfigurationModel : IConfigurationModel 20 | { 21 | public string JsonFilePath { get; set; } 22 | public string DataSourceUrl { get; set; } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.ConfigurationService/ConfigurationModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.Common.Contracts; 16 | 17 | namespace Microsoft.Knowzy.Configuration 18 | { 19 | public class ConfigurationModel : IConfigurationModel 20 | { 21 | public string JsonFilePath { get; set; } 22 | public string DataSourceUrl { get; set; } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Adventure Works Knowzy 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Messages/EditItemMessage.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.WPF.ViewModels.Models; 16 | 17 | namespace Microsoft.Knowzy.WPF.Messages 18 | { 19 | public class EditItemMessage 20 | { 21 | public EditItemMessage(ItemViewModel item) 22 | { 23 | Item = item; 24 | } 25 | 26 | public ItemViewModel Item { get; } 27 | } 28 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Messages/EditItemMessage.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.WPF.ViewModels.Models; 16 | 17 | namespace Microsoft.Knowzy.WPF.Messages 18 | { 19 | public class EditItemMessage 20 | { 21 | public EditItemMessage(ItemViewModel item) 22 | { 23 | Item = item; 24 | } 25 | 26 | public ItemViewModel Item { get; } 27 | } 28 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.DAL/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | <?xml version="1.0" encoding="utf-16"?> 7 | <SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 8 | <ConnectionString>Data Source=localhost\sqlexpress;Initial Catalog=KnowzyDB;Persist Security Info=True;User ID=knowzy;Password=Kn0wzy!!!</ConnectionString> 9 | <ProviderName>System.Data.SqlClient</ProviderName> 10 | </SerializableConnectionString> 11 | Data Source=localhost\sqlexpress;Initial Catalog=KnowzyDB;Persist Security Info=True;User ID=knowzy;Password=Kn0wzy!!! 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.UWP")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.UWP")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Version information for an assembly consists of the following four values: 18 | // 19 | // Major Version 20 | // Minor Version 21 | // Build Number 22 | // Revision 23 | // 24 | // You can specify all the values or you can default the Build and Revision Numbers 25 | // by using the '*' as shown below: 26 | // [assembly: AssemblyVersion("1.0.*")] 27 | [assembly: AssemblyVersion("1.0.0.0")] 28 | [assembly: AssemblyFileVersion("1.0.0.0")] 29 | [assembly: ComVisible(false)] -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Microsoft.Knowzy.WPF.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Microsoft.Knowzy.WPF.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.1.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/OrderLine.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | namespace Microsoft.Knowzy.Domain 14 | { 15 | public class OrderLine 16 | { 17 | public int Id { get; set; } 18 | public string OrderId { get; set; } 19 | public virtual Order Order { get; set; } 20 | public string ProductId { get; set; } 21 | public virtual Product Product { get; set; } 22 | public int Quantity { get; set; } 23 | public decimal Price { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/wwwroot/Data/products.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "RN3454", 4 | "image": "/images/pink.png", 5 | "category": "Standard Noses", 6 | "price": 25, 7 | "quantityInStock": 82, 8 | "name": "Deluxe Nose", 9 | "description": "Everything you'd expect, and a little something more." 10 | }, 11 | { 12 | "id": "PN3476", 13 | "image": "/images/yellow.png", 14 | "category": "Premium Noses", 15 | "price": 75, 16 | "quantityInStock": 5, 17 | "name": "Collectors Edition", 18 | "description": "Limited edition, very rare!" 19 | }, 20 | { 21 | "id": "YN3171", 22 | "image": "/images/red.png", 23 | "category": "Standard Noses", 24 | "price": 10, 25 | "quantityInStock": 150, 26 | "name": "Basic Nose", 27 | "description": "Our best-selling classic." 28 | }, 29 | { 30 | "id": "ZX2584", 31 | "category": "Premium Noses", 32 | "image": "/images/pink.png", 33 | "price": 45.3, 34 | "quantityInStock": 24, 35 | "name": "The Co'Nose seur", 36 | "description": "For the discerning performance comedian." 37 | } 38 | ] -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Resources; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("Microsoft.Knowzy.Xamarin")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("Microsoft.Knowzy.Xamarin")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: NeutralResourcesLanguage("en")] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /src/Noses/noses.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Id": "RN3454", 4 | "Name": "Black Nose", 5 | "RawMaterial": "Black foam", 6 | "Notes": "Everything you'd expect, and a little something more.", 7 | "Image": "https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/master/src/Noses/black.png" 8 | }, 9 | { 10 | "Id": "RN3455", 11 | "Name": "Red Nose", 12 | "RawMaterial": "Black foam", 13 | "Notes": "Everything you'd expect, and a little something more.", 14 | "Image": "https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/master/src/Noses/red.png" 15 | }, 16 | { 17 | "Id": "RN3456", 18 | "Name": "Purple Nose", 19 | "RawMaterial": "Black foam", 20 | "Notes": "Everything you'd expect, and a little something more.", 21 | "Image": "https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/master/src/Noses/purple.png" 22 | }, 23 | { 24 | "Id": "RN3457", 25 | "Name": "Rainbow Nose", 26 | "RawMaterial": "Black foam", 27 | "Notes": "Everything you'd expect, and a little something more.", 28 | "Image": "https://raw.githubusercontent.com/Knowzy/KnowzyInternalApps/master/src/Noses/rainbow.png" 29 | } 30 | ] -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/ViewModels/Models/StatusLaneViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Collections.Generic; 16 | using Caliburn.Micro; 17 | using Microsoft.Knowzy.Domain.Enums; 18 | using Microsoft.Knowzy.WPF.Messages; 19 | 20 | namespace Microsoft.Knowzy.WPF.ViewModels.Models 21 | { 22 | public class StatusLaneViewModel : Screen 23 | { 24 | public DevelopmentStatus Status { get; set; } 25 | 26 | public IEnumerable Items { get; set; } 27 | 28 | public int CascadeLevel { get; set; } 29 | } 30 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/ViewModels/Models/StatusLaneViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System.Collections.Generic; 16 | using Caliburn.Micro; 17 | using Microsoft.Knowzy.Domain.Enums; 18 | using Microsoft.Knowzy.WPF.Messages; 19 | 20 | namespace Microsoft.Knowzy.WPF.ViewModels.Models 21 | { 22 | public class StatusLaneViewModel : Screen 23 | { 24 | public DevelopmentStatus Status { get; set; } 25 | 26 | public IEnumerable Items { get; set; } 27 | 28 | public int CascadeLevel { get; set; } 29 | } 30 | } -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/Customer.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.Collections.Generic; 14 | 15 | namespace Microsoft.Knowzy.Domain 16 | { 17 | public class Customer 18 | { 19 | public string Id { get; set; } 20 | public string CompanyName { get; set; } 21 | public string Address { get; set; } 22 | public string ContactPerson { get; set; } 23 | public string Email { get; set; } 24 | public string PhoneNumber { get; set; } 25 | public virtual ICollection Orders { get; set; } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/ViewModels/OrdersViewModel.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.ComponentModel.DataAnnotations; 14 | using Microsoft.Knowzy.Domain; 15 | 16 | namespace Microsoft.Knowzy.Models.ViewModels 17 | { 18 | public class OrdersViewModel 19 | { 20 | [Display(Name = "Order No.")] 21 | public string Id { get; set; } 22 | [Display(Name = "Company Name")] 23 | public string CompanyName { get; set; } 24 | public string Tracking { get; set; } 25 | public OrderStatus Status { get; set; } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Themes/Fonts.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 20 | 21 | ms-appx:///Assets/Fonts/segoeui.ttf#Segoe UI 22 | ms-appx:///Assets/Fonts/segoeuil.ttf#Segoe UI Light 23 | ms-appx:///Assets/Fonts/segoeuib.ttf#Segoe UI Bold 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Themes/Fonts.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 20 | 21 | ms-appx:///Assets/Fonts/segoeui.ttf#Segoe UI 22 | ms-appx:///Assets/Fonts/segoeuil.ttf#Segoe UI Light 23 | ms-appx:///Assets/Fonts/segoeuib.ttf#Segoe UI Bold 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Program.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.IO; 14 | using Microsoft.AspNetCore.Hosting; 15 | 16 | namespace Microsoft.Knowzy.WebApp 17 | { 18 | public class Program 19 | { 20 | public static void Main(string[] args) 21 | { 22 | var host = new WebHostBuilder() 23 | .UseKestrel() 24 | .UseContentRoot(Directory.GetCurrentDirectory()) 25 | .UseIISIntegration() 26 | .UseStartup() 27 | .Build(); 28 | 29 | host.Run(); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Domain/Product.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System.Collections.Generic; 14 | 15 | namespace Microsoft.Knowzy.Domain 16 | { 17 | public class Product 18 | { 19 | public string Id { get; set; } 20 | public string Image { get; set; } 21 | public string Category { get; set; } 22 | public decimal Price { get; set; } 23 | public string QuantityInStock { get; set; } 24 | public string Name { get; set; } 25 | public string Description { get; set; } 26 | public virtual ICollection OrderLines { get; set; } 27 | } 28 | } -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.AuthenticationService/AuthenticationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Authentication 16 | { 17 | public class AuthenticationService : IAuthenticationService 18 | { 19 | public void Login(string name, string password) 20 | { 21 | // TODO: Develop this service 22 | UserLogged = name; 23 | } 24 | 25 | public void Logout() 26 | { 27 | // TODO: Develop this service 28 | UserLogged = string.Empty; 29 | } 30 | 31 | public string UserLogged { get; private set; } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/Profiles/ShippingProfile.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using AutoMapper; 14 | using Microsoft.Knowzy.Domain; 15 | using Microsoft.Knowzy.Models.ViewModels; 16 | 17 | namespace Microsoft.Knowzy.Models.Profiles 18 | { 19 | public class ShippingProfile : Profile 20 | { 21 | public ShippingProfile() 22 | { 23 | CreateMap() 24 | .IncludeBase(); 25 | 26 | CreateMap() 27 | .IncludeBase().ReverseMap(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.AuthenticationService/AuthenticationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | namespace Microsoft.Knowzy.Authentication 16 | { 17 | public class AuthenticationService : IAuthenticationService 18 | { 19 | public void Login(string name, string password) 20 | { 21 | // TODO: Develop this service 22 | UserLogged = name; 23 | } 24 | 25 | public void Logout() 26 | { 27 | // TODO: Develop this service 28 | UserLogged = string.Empty; 29 | } 30 | 31 | public string UserLogged { get; private set; } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/Profiles/ReceivingProfile.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using AutoMapper; 14 | using Microsoft.Knowzy.Domain; 15 | using Microsoft.Knowzy.Models.ViewModels; 16 | 17 | namespace Microsoft.Knowzy.Models.Profiles 18 | { 19 | public class ReceivingProfile : Profile 20 | { 21 | public ReceivingProfile() 22 | { 23 | CreateMap() 24 | .IncludeBase(); 25 | 26 | CreateMap() 27 | .IncludeBase().ReverseMap(); 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content.PM; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | using Microsoft.Identity.Client; 10 | using Android.Content; 11 | using Xamarin.Forms; 12 | 13 | namespace Microsoft.Knowzy.Xamarin.Android 14 | { 15 | [Activity(Label = "Knowzy Mobile", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 16 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity 17 | { 18 | protected override void OnCreate(Bundle bundle) 19 | { 20 | base.OnCreate(bundle); 21 | 22 | Forms.Init(this, bundle); 23 | LoadApplication(new App()); 24 | App.PCA.RedirectUri = "msal1ada69dc-9e00-482f-9f29-769d89dd1e78://auth"; 25 | 26 | App.UiParent = new UIParent(Forms.Context as Activity); 27 | } 28 | 29 | protected override void OnActivityResult(int requestCode, Result resultCode, Intent data) 30 | { 31 | base.OnActivityResult(requestCode, resultCode, data); 32 | AuthenticationContinuationHelper.SetAuthenticationContinuationEventArgs(requestCode, resultCode, data); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.BLL/ProductInventoryMapper.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Knowzy.Domain; 2 | using Microsoft.Knowzy.Domain.Enums; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | using static Microsoft.Knowzy.NET.DAL.KnowzyDataSet; 9 | 10 | namespace Microsoft.Knowzy.NET.BLL 11 | { 12 | public static class ProductInventoryMapper 13 | { 14 | public static Product ToProduct(this InventoryRow inventoryRow) 15 | { 16 | DevelopmentStatus status; 17 | bool succeeded = Enum.TryParse(inventoryRow.Status, true, out status); 18 | 19 | if (!succeeded) status = DevelopmentStatus.Prototype; 20 | 21 | var product = new Product 22 | { 23 | Id = inventoryRow.Id, 24 | Engineer = inventoryRow.Engineer, 25 | Name = inventoryRow.Name, 26 | RawMaterial = inventoryRow.RawMaterial, 27 | Status = status, 28 | DevelopmentStartDate = inventoryRow.DevelopmentStartDate, 29 | ExpectedCompletionDate = inventoryRow.ExpectedCompletionDate, 30 | Notes = inventoryRow.Notes, 31 | ImageSource = inventoryRow.ImageSource 32 | }; 33 | 34 | return product; 35 | } 36 | 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- 1 | 17 | 18 | 19 | 20 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/2. Services/Repositories/Microsoft.Knowzy.Repositories.Core/OrderRepositoryHelper.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using System; 14 | using System.Linq; 15 | 16 | namespace Microsoft.Knowzy.Repositories.Core 17 | { 18 | public static class OrderRepositoryHelper 19 | { 20 | public static string GenerateString(int size) 21 | { 22 | var random = new Random(); 23 | var alphabet = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; 24 | var chars = Enumerable.Range(0, size) 25 | .Select(x => alphabet[random.Next(0, alphabet.Length)]); 26 | return new string(chars.ToArray()); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Themes/Converters.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Themes/Converters.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Web/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using Microsoft.AspNetCore.Builder; 6 | using Microsoft.AspNetCore.Hosting; 7 | using Microsoft.AspNetCore.Http; 8 | using Microsoft.Extensions.DependencyInjection; 9 | 10 | namespace Microsoft.Knowzy.Web 11 | { 12 | public class Startup 13 | { 14 | // This method gets called by the runtime. Use this method to add services to the container. 15 | // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940 16 | public void ConfigureServices(IServiceCollection services) 17 | { 18 | } 19 | 20 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 21 | public void Configure(IApplicationBuilder app, IHostingEnvironment env) 22 | { 23 | if (env.IsDevelopment()) 24 | { 25 | app.UseDeveloperExceptionPage(); 26 | } 27 | 28 | app.UseStaticFiles(new StaticFileOptions() 29 | { 30 | ServeUnknownFileTypes = true, 31 | DefaultContentType = "text/plain" 32 | }); 33 | 34 | app.Run(async (context) => 35 | { 36 | await context.Response.WriteAsync("Hello World!"); 37 | }); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Domain/Product.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System; 16 | using Microsoft.Knowzy.Domain.Enums; 17 | 18 | namespace Microsoft.Knowzy.Domain 19 | { 20 | public class Product 21 | { 22 | public string Id { get; set; } 23 | public string Engineer { get; set; } 24 | public string Name { get; set; } 25 | public string RawMaterial { get; set; } 26 | public DevelopmentStatus Status { get; set; } 27 | public DateTime DevelopmentStartDate { get; set; } 28 | public DateTime ExpectedCompletionDate { get; set; } 29 | public string SupplyManagementContact { get; set; } 30 | public string Notes { get; set; } 31 | public string ImageSource { get; set; } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Domain/Product.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System; 16 | using Microsoft.Knowzy.Domain.Enums; 17 | 18 | namespace Microsoft.Knowzy.Domain 19 | { 20 | public class Product 21 | { 22 | public string Id { get; set; } 23 | public string Engineer { get; set; } 24 | public string Name { get; set; } 25 | public string RawMaterial { get; set; } 26 | public DevelopmentStatus Status { get; set; } 27 | public DateTime DevelopmentStartDate { get; set; } 28 | public DateTime ExpectedCompletionDate { get; set; } 29 | public string SupplyManagementContact { get; set; } 30 | public string Notes { get; set; } 31 | public string ImageSource { get; set; } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("Microsoft.Knowzy.Xamarin.Android")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("Microsoft.Knowzy.Xamarin.Android")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | 32 | // Add some common permissions, these can be removed if not needed 33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 35 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/App.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Graph; 2 | using Microsoft.Identity.Client; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | 8 | using Xamarin.Forms; 9 | 10 | namespace Microsoft.Knowzy.Xamarin 11 | { 12 | public class App : Application 13 | { 14 | public static PublicClientApplication PCA = null; 15 | public static string ClientID = "1ada69dc-9e00-482f-9f29-769d89dd1e78"; 16 | public static string[] Scopes = { "User.Read UserTimelineActivity.Write.CreatedByApp" }; 17 | public static string Username = string.Empty; 18 | 19 | public static UIParent UiParent = null; 20 | 21 | public static GraphServiceClient GraphClient = null; 22 | 23 | public App() 24 | { 25 | // default redirectURI; each platform specific project will have to override it with its own 26 | PCA = new PublicClientApplication(ClientID); 27 | 28 | MainPage = new NavigationPage(new Microsoft.Knowzy.Xamarin.MainPage()); 29 | } 30 | 31 | protected override void OnStart() 32 | { 33 | // Handle when your app starts 34 | } 35 | 36 | protected override void OnSleep() 37 | { 38 | // Handle when your app sleeps 39 | } 40 | 41 | protected override void OnResume() 42 | { 43 | // Handle when your app resumes 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.ConfigurationService/ConfigurationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.Common.Contracts; 16 | using Microsoft.Knowzy.Common.Contracts.Helpers; 17 | 18 | namespace Microsoft.Knowzy.Configuration 19 | { 20 | public class ConfigurationService : IConfigurationService 21 | { 22 | const string ConfigurationFilePath = "Config.json"; 23 | 24 | public ConfigurationService(IFileHelper fileHelper, IJsonHelper jsonHelper) 25 | { 26 | Configuration = jsonHelper.Deserialize(fileHelper.ReadTextFile(fileHelper.ActualPath + ConfigurationFilePath)); 27 | } 28 | 29 | public IConfigurationModel Configuration 30 | { 31 | get; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.ConfigurationService/ConfigurationService.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using Microsoft.Knowzy.Common.Contracts; 16 | using Microsoft.Knowzy.Common.Contracts.Helpers; 17 | 18 | namespace Microsoft.Knowzy.Configuration 19 | { 20 | public class ConfigurationService : IConfigurationService 21 | { 22 | const string ConfigurationFilePath = "Config.json"; 23 | 24 | public ConfigurationService(IFileHelper fileHelper, IJsonHelper jsonHelper) 25 | { 26 | Configuration = jsonHelper.Deserialize(fileHelper.ReadTextFile(fileHelper.ActualPath + ConfigurationFilePath)); 27 | } 28 | 29 | public IConfigurationModel Configuration 30 | { 31 | get; 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/Tools/CustomVisionTrainer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("CustomVisionTrainer")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("CustomVisionTrainer")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("cff9ee1c-ea53-4eed-8381-e0895ab938bd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.BLL/SqlDataProvider.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Knowzy.Common.Contracts; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | using Microsoft.Knowzy.Domain; 8 | 9 | namespace Microsoft.Knowzy.NET.BLL 10 | { 11 | public class SqlDataProvider : IDataProvider 12 | { 13 | public Product[] GetData() 14 | { 15 | var inventoryRowArray = InventoryBLL.Current.GetInventory().ToArray(); 16 | 17 | List products = new List(); 18 | 19 | foreach(var inventoryRow in inventoryRowArray) 20 | { 21 | var product = inventoryRow.ToProduct(); 22 | products.Add(product); 23 | } 24 | 25 | return products.ToArray(); 26 | } 27 | 28 | public void SetData(Product[] products) 29 | { 30 | foreach(var product in products) 31 | { 32 | InventoryBLL.Current.UpdateInventory( 33 | product.Id, 34 | product.Engineer, 35 | product.Name, 36 | product.RawMaterial, 37 | product.Status.ToString(), 38 | product.DevelopmentStartDate, 39 | product.ExpectedCompletionDate, 40 | product.SupplyManagementContact, 41 | product.Notes, 42 | product.ImageSource); 43 | } 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/1. WebApp/Microsoft.Knowzy.WebApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @*// ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // *******************************************************************@ 12 | 13 | @{ 14 | ViewData["Title"] = "Error"; 15 | } 16 | 17 |

Error.

18 |

An error occurred while processing your request.

19 | 20 |

Development Mode

21 |

22 | Swapping to Development environment will display more detailed information about the error that occurred. 23 |

24 |

25 | Development environment should not be enabled in deployed applications, as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development, and restarting the application. 26 |

27 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Converters/CascadeLevelToMarginConverter.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System; 16 | using System.Globalization; 17 | using System.Windows; 18 | using System.Windows.Data; 19 | 20 | namespace Microsoft.Knowzy.WPF.Converters 21 | { 22 | class CascadeLevelToMarginConverter : IValueConverter 23 | { 24 | public const int CascadeSize = 60; 25 | 26 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 27 | { 28 | var level = (value is int)? (int)value : 0; 29 | return new Thickness(0, level * CascadeSize, 0, 0); 30 | } 31 | 32 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 33 | { 34 | throw new NotImplementedException(); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Converters/CascadeLevelToMarginConverter.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System; 16 | using System.Globalization; 17 | using System.Windows; 18 | using System.Windows.Data; 19 | 20 | namespace Microsoft.Knowzy.WPF.Converters 21 | { 22 | class CascadeLevelToMarginConverter : IValueConverter 23 | { 24 | public const int CascadeSize = 60; 25 | 26 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 27 | { 28 | var level = (value is int)? (int)value : 0; 29 | return new Thickness(0, level * CascadeSize, 0, 0); 30 | } 31 | 32 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 33 | { 34 | throw new NotImplementedException(); 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System; 16 | using System.IO; 17 | using Microsoft.Knowzy.Common.Contracts.Helpers; 18 | 19 | namespace Microsoft.Knowzy.WPF.Helpers 20 | { 21 | public class FileHelper : IFileHelper 22 | { 23 | public string ActualPath => AppDomain.CurrentDomain.BaseDirectory; 24 | 25 | public string ReadTextFile(string filePath) 26 | { 27 | using (var reader = new StreamReader(filePath)) 28 | { 29 | return reader.ReadToEnd(); 30 | } 31 | } 32 | 33 | public void WriteTextFile(string filePath, string content) 34 | { 35 | using (var writer = new StreamWriter(filePath)) 36 | { 37 | writer.WriteLine(content); 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.Common")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.Common")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("c7bf0c4c-4d81-4545-9143-4fb3470e37b6")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.Domain")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.Domain")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("1910d6cc-60ed-45f2-8e73-4e6db2343db5")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Helpers/FileHelper.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | 3 | // Copyright (c) Microsoft. All rights reserved. 4 | // This code is licensed under the MIT License (MIT). 5 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 6 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 7 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 8 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 9 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 10 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 11 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 12 | 13 | // ****************************************************************** 14 | 15 | using System; 16 | using System.IO; 17 | using Microsoft.Knowzy.Common.Contracts.Helpers; 18 | 19 | namespace Microsoft.Knowzy.WPF.Helpers 20 | { 21 | public class FileHelper : IFileHelper 22 | { 23 | public string ActualPath => AppDomain.CurrentDomain.BaseDirectory; 24 | 25 | public string ReadTextFile(string filePath) 26 | { 27 | using (var reader = new StreamReader(filePath)) 28 | { 29 | return reader.ReadToEnd(); 30 | } 31 | } 32 | 33 | public void WriteTextFile(string filePath, string content) 34 | { 35 | using (var writer = new StreamWriter(filePath)) 36 | { 37 | writer.WriteLine(content); 38 | } 39 | } 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.Common")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.Common")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("c7bf0c4c-4d81-4545-9143-4fb3470e37b6")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.Domain")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.Domain")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("1910d6cc-60ed-45f2-8e73-4e6db2343db5")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.BLL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.NET.BLL")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.NET.BLL")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("ac96a013-af76-42dd-a07b-9464aa670231")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.NET.DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.NET.DAL")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.NET.DAL")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("8b0985e3-3fa3-478b-8f33-e8f224778bf9")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Themes/FontSizes.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 21 | 22 | 10 23 | 12 24 | 13 25 | 14 26 | 16 27 | 18 28 | 26 29 | 52 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Themes/FontSizes.xaml: -------------------------------------------------------------------------------- 1 | 16 | 17 | 21 | 22 | 10 23 | 12 24 | 13 25 | 14 26 | 16 27 | 18 28 | 26 29 | 52 30 | 31 | 32 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.JsonDataProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.JsonDataProvider")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.JsonDataProvider")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("078af6d3-a69f-40cc-b349-48cd82411408")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.JsonDataProvider/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.JsonDataProvider")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.JsonDataProvider")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("078af6d3-a69f-40cc-b349-48cd82411408")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Shipping_WebApp/src/3. Domain/Microsoft.Knowzy.Models/ViewModels/Validators/OrderLineViewModelValidator.cs: -------------------------------------------------------------------------------- 1 | // ****************************************************************** 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // This code is licensed under the MIT License (MIT). 4 | // THE CODE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 5 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 6 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 7 | // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 8 | // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 9 | // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH 10 | // THE CODE OR THE USE OR OTHER DEALINGS IN THE CODE. 11 | // ****************************************************************** 12 | 13 | using FluentValidation; 14 | 15 | namespace Microsoft.Knowzy.Models.ViewModels.Validators 16 | { 17 | public class OrderLineViewModelValidator : AbstractValidator 18 | { 19 | public OrderLineViewModelValidator() 20 | { 21 | RuleFor(orderLine => orderLine.Quantity) 22 | .NotEmpty() 23 | .WithMessage("A number between 1 - 999 is required") 24 | .GreaterThan(0) 25 | .WithMessage("At least one item is mandatory") 26 | .LessThanOrEqualTo(999) 27 | .WithMessage("Not more than 999 can be purchased") 28 | .Must(quantity => quantity is int) 29 | .WithMessage("A number between 1 - 999 is required"); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.ConfigurationService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.ConfigurationService")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.ConfigurationService")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("01ef3cff-d354-4b3f-b4b3-ca1863ccd686")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.AuthenticationService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.AuthenticationService")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.AuthenticationService")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("20f1d78f-6e71-4fba-bb7d-1d54ea11e012")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.ConfigurationService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.ConfigurationService")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.ConfigurationService")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("01ef3cff-d354-4b3f-b4b3-ca1863ccd686")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.AuthenticationService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Microsoft.Knowzy.AuthenticationService")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Microsoft.Knowzy.AuthenticationService")] 13 | [assembly: AssemblyCopyright("Copyright © 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("20f1d78f-6e71-4fba-bb7d-1d54ea11e012")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /src/Knowzy_Engineering_Win32App/src/Microsoft.Knowzy.WPF/Views/AboutView.xaml: -------------------------------------------------------------------------------- 1 | 16 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.WPF/Views/AboutView.xaml: -------------------------------------------------------------------------------- 1 | 16 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /src/Knowzy_Inventory_Win32App/src/Microsoft.Knowzy.Xamarin/Services/MockInventoryService.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Knowzy.Xamarin.Model; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Microsoft.Knowzy.Xamarin.Services 9 | { 10 | public class MockInventoryService 11 | { 12 | private List _inventoryList; 13 | 14 | private MockInventoryService() 15 | { 16 | _populateMockData(); 17 | } 18 | 19 | private void _populateMockData() 20 | { 21 | _inventoryList = new List 22 | { 23 | new InventoryModel { InventoryId = "12358132", Engineer = "Ryan Drescher", Name = "Purple nose", RawMaterial = "Purple foam" }, 24 | new InventoryModel { InventoryId = "12358134", Engineer = "Russel Peters", Name = "Patch Adams", RawMaterial = "Red foam" }, 25 | new InventoryModel { InventoryId = "PN3476", Engineer = "Steve Jacobs", Name = "Fabric printed nose", RawMaterial = "Fabric with prints" }, 26 | new InventoryModel { InventoryId = "RN3454", Engineer = "Russel Peters", Name = "Black Nose", RawMaterial = "Black foam" }, 27 | new InventoryModel { InventoryId = "RN3456", Engineer = "Jane Smith", Name = "Deluxe Nose", RawMaterial = "Johan Harris" } 28 | }; 29 | } 30 | 31 | private static MockInventoryService current; 32 | 33 | public static MockInventoryService Current => current ?? (current = new MockInventoryService()); 34 | 35 | public List GetInventory() 36 | { 37 | return _inventoryList; 38 | } 39 | 40 | } 41 | } 42 | --------------------------------------------------------------------------------