├── CODEOWNERS ├── db ├── CountryOrders.sql ├── CountryRevenue.sql ├── CountryCustomers.sql ├── CountryMarketShare.sql ├── CountryTopProducts.sql ├── CountryCustomersTotal.sql ├── ProductsSalesByMonth.sql ├── MonthlySalesByEmployee.sql └── SalesAmounts.sql ├── angular ├── components │ └── about │ │ ├── about.js │ │ └── about.html ├── Content │ ├── favicon.ico │ ├── Employees │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── 1-t.png │ │ ├── 2-t.png │ │ ├── 3-t.png │ │ ├── 4-t.png │ │ ├── 5-t.png │ │ ├── 6-t.png │ │ ├── 7-t.png │ │ ├── 8-t.png │ │ └── 9-t.png │ ├── Products │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 44.jpg │ │ ├── 45.jpg │ │ ├── 46.jpg │ │ ├── 47.jpg │ │ ├── 48.jpg │ │ ├── 49.jpg │ │ ├── 5.jpg │ │ ├── 50.jpg │ │ ├── 51.jpg │ │ ├── 52.jpg │ │ ├── 53.jpg │ │ ├── 54.jpg │ │ ├── 55.jpg │ │ ├── 56.jpg │ │ ├── 57.jpg │ │ ├── 58.jpg │ │ ├── 59.jpg │ │ ├── 6.jpg │ │ ├── 60.jpg │ │ ├── 61.jpg │ │ ├── 62.jpg │ │ ├── 63.jpg │ │ ├── 64.jpg │ │ ├── 65.jpg │ │ ├── 66.jpg │ │ ├── 67.jpg │ │ ├── 68.jpg │ │ ├── 69.jpg │ │ ├── 7.jpg │ │ ├── 70.jpg │ │ ├── 71.jpg │ │ ├── 72.jpg │ │ ├── 73.jpg │ │ ├── 74.jpg │ │ ├── 75.jpg │ │ ├── 76.jpg │ │ ├── 77.jpg │ │ ├── 78.jpg │ │ ├── 79.jpg │ │ ├── 8.jpg │ │ ├── 80.jpg │ │ └── 9.jpg │ ├── Fonts │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ └── icomoon.svg │ └── employee-quarter-sales.json ├── README.md ├── bower.json ├── web.config └── app.js ├── html ├── Content │ ├── favicon.ico │ ├── Employees │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── 1-t.png │ │ ├── 2-t.png │ │ ├── 3-t.png │ │ ├── 4-t.png │ │ ├── 5-t.png │ │ ├── 6-t.png │ │ ├── 7-t.png │ │ ├── 8-t.png │ │ └── 9-t.png │ ├── Products │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 27.jpg │ │ ├── 28.jpg │ │ ├── 29.jpg │ │ ├── 3.jpg │ │ ├── 30.jpg │ │ ├── 31.jpg │ │ ├── 32.jpg │ │ ├── 33.jpg │ │ ├── 34.jpg │ │ ├── 35.jpg │ │ ├── 36.jpg │ │ ├── 37.jpg │ │ ├── 38.jpg │ │ ├── 39.jpg │ │ ├── 4.jpg │ │ ├── 40.jpg │ │ ├── 41.jpg │ │ ├── 42.jpg │ │ ├── 43.jpg │ │ ├── 44.jpg │ │ ├── 45.jpg │ │ ├── 46.jpg │ │ ├── 47.jpg │ │ ├── 48.jpg │ │ ├── 49.jpg │ │ ├── 5.jpg │ │ ├── 50.jpg │ │ ├── 51.jpg │ │ ├── 52.jpg │ │ ├── 53.jpg │ │ ├── 54.jpg │ │ ├── 55.jpg │ │ ├── 56.jpg │ │ ├── 57.jpg │ │ ├── 58.jpg │ │ ├── 59.jpg │ │ ├── 6.jpg │ │ ├── 60.jpg │ │ ├── 61.jpg │ │ ├── 62.jpg │ │ ├── 63.jpg │ │ ├── 64.jpg │ │ ├── 65.jpg │ │ ├── 66.jpg │ │ ├── 67.jpg │ │ ├── 68.jpg │ │ ├── 69.jpg │ │ ├── 7.jpg │ │ ├── 70.jpg │ │ ├── 71.jpg │ │ ├── 72.jpg │ │ ├── 73.jpg │ │ ├── 74.jpg │ │ ├── 75.jpg │ │ ├── 76.jpg │ │ ├── 77.jpg │ │ ├── 78.jpg │ │ ├── 79.jpg │ │ ├── 8.jpg │ │ ├── 80.jpg │ │ └── 9.jpg │ ├── Fonts │ │ ├── icomoon.eot │ │ ├── icomoon.ttf │ │ ├── icomoon.woff │ │ └── icomoon.svg │ ├── employee-quarter-sales.json │ └── employees-list.json └── web.config ├── aspnet-mvc ├── kendoui-northwind-dashboard │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Shared │ │ │ ├── EditorTemplates │ │ │ │ ├── Date.cshtml │ │ │ │ ├── DateTime.cshtml │ │ │ │ ├── Time.cshtml │ │ │ │ ├── Email.cshtml │ │ │ │ ├── String.cshtml │ │ │ │ ├── Url.cshtml │ │ │ │ ├── EmailAddress.cshtml │ │ │ │ ├── Password.cshtml │ │ │ │ ├── Float.cshtml │ │ │ │ ├── Number.cshtml │ │ │ │ ├── Currency.cshtml │ │ │ │ ├── Integer.cshtml │ │ │ │ ├── GridForeignKey.cshtml │ │ │ │ └── CustomGridForeignKey.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Home │ │ │ ├── EditorTemplates │ │ │ │ └── ShipCountry.cshtml │ │ │ └── About.cshtml │ │ └── web.config │ ├── Global.asax │ ├── Images │ │ ├── accent.png │ │ ├── bullet.png │ │ └── heroAccent.png │ ├── Content │ │ ├── favicon.ico │ │ ├── Products │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 19.jpg │ │ │ ├── 20.jpg │ │ │ ├── 21.jpg │ │ │ ├── 22.jpg │ │ │ ├── 23.jpg │ │ │ ├── 24.jpg │ │ │ ├── 25.jpg │ │ │ ├── 26.jpg │ │ │ ├── 27.jpg │ │ │ ├── 28.jpg │ │ │ ├── 29.jpg │ │ │ ├── 30.jpg │ │ │ ├── 31.jpg │ │ │ ├── 32.jpg │ │ │ ├── 33.jpg │ │ │ ├── 34.jpg │ │ │ ├── 35.jpg │ │ │ ├── 36.jpg │ │ │ ├── 37.jpg │ │ │ ├── 38.jpg │ │ │ ├── 39.jpg │ │ │ ├── 40.jpg │ │ │ ├── 41.jpg │ │ │ ├── 42.jpg │ │ │ ├── 43.jpg │ │ │ ├── 44.jpg │ │ │ ├── 45.jpg │ │ │ ├── 46.jpg │ │ │ ├── 47.jpg │ │ │ ├── 48.jpg │ │ │ ├── 49.jpg │ │ │ ├── 50.jpg │ │ │ ├── 51.jpg │ │ │ ├── 52.jpg │ │ │ ├── 53.jpg │ │ │ ├── 54.jpg │ │ │ ├── 55.jpg │ │ │ ├── 56.jpg │ │ │ ├── 57.jpg │ │ │ ├── 58.jpg │ │ │ ├── 59.jpg │ │ │ ├── 60.jpg │ │ │ ├── 61.jpg │ │ │ ├── 62.jpg │ │ │ ├── 63.jpg │ │ │ ├── 64.jpg │ │ │ ├── 65.jpg │ │ │ ├── 66.jpg │ │ │ ├── 67.jpg │ │ │ ├── 68.jpg │ │ │ ├── 69.jpg │ │ │ ├── 70.jpg │ │ │ ├── 71.jpg │ │ │ ├── 72.jpg │ │ │ ├── 73.jpg │ │ │ ├── 74.jpg │ │ │ ├── 75.jpg │ │ │ ├── 76.jpg │ │ │ ├── 77.jpg │ │ │ ├── 78.jpg │ │ │ ├── 79.jpg │ │ │ └── 80.jpg │ │ ├── Employees │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── 1-t.png │ │ │ ├── 2-t.png │ │ │ ├── 3-t.png │ │ │ ├── 4-t.png │ │ │ ├── 5-t.png │ │ │ ├── 6-t.png │ │ │ ├── 7-t.png │ │ │ ├── 8-t.png │ │ │ └── 9-t.png │ │ └── Fonts │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ └── icomoon.svg │ ├── App_Data │ │ ├── NORTHWND.MDF │ │ ├── northwind.db │ │ └── NORTHWND_log.ldf │ ├── Scripts │ │ └── _references.js │ ├── Models │ │ ├── Northwind.Designer.cs │ │ ├── CategoryViewModel.cs │ │ ├── ShipperViewModel.cs │ │ ├── Northwind.cs │ │ ├── EmployeeTerritory.cs │ │ ├── CustomerCustomerDemo.cs │ │ ├── Order_Detail.cs │ │ ├── OrderDetail.cs │ │ ├── CustOrderHist_Result.cs │ │ ├── CountryMarketShare_Result.cs │ │ ├── CountryOrders_Result.cs │ │ ├── SalesByCategory_Result.cs │ │ ├── CountryRevenue_Result.cs │ │ ├── ProductsSalesByMonth_Result.cs │ │ ├── CountryCustomers_Result.cs │ │ ├── Order_Subtotal.cs │ │ ├── Current_Product_List.cs │ │ ├── Ten_Most_Expensive_Products_Result.cs │ │ ├── Category_Sales_for_1997.cs │ │ ├── Products_Above_Average_Price.cs │ │ ├── CountryTopProducts_Result.cs │ │ ├── SalesAmounts_Result.cs │ │ ├── MonthlySalesByEmployee_Result.cs │ │ ├── EmployeeViewModel.cs │ │ ├── Product_Sales_for_1997.cs │ │ ├── Sales_by_Year_Result.cs │ │ ├── Summary_of_Sales_by_Year.cs │ │ ├── Summary_of_Sales_by_Quarter.cs │ │ ├── Sales_by_Category.cs │ │ ├── CustOrdersOrders_Result.cs │ │ ├── CustOrdersDetail_Result.cs │ │ ├── Sales_Totals_by_Amount.cs │ │ ├── Alphabetical_list_of_product.cs │ │ ├── Products_by_Category.cs │ │ ├── Region.cs │ │ ├── Employee_Sales_by_Country_Result.cs │ │ ├── Shipper.cs │ │ ├── CustomerViewModel.cs │ │ ├── Order_Details_Extended.cs │ │ ├── OrderDetailViewModel.cs │ │ ├── Category.cs │ │ ├── CustomerDemographic.cs │ │ ├── Territory.cs │ │ ├── Supplier.cs │ │ ├── Product.cs │ │ ├── Customer.cs │ │ ├── Orders_Qry.cs │ │ ├── SaleViewModel.cs │ │ ├── Order.cs │ │ ├── ProductViewModel.cs │ │ ├── OrderViewModel.cs │ │ ├── Invoice.cs │ │ └── Employee.cs │ ├── Configuration │ │ └── SQLiteConfiguration.cs │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── kendoui-northwind-dashboard.csproj.user │ ├── Global.asax.cs │ └── Controllers │ │ ├── ProductsController.cs │ │ └── HomeController.cs └── kendoui-northwind-dashboard.sln ├── .gitignore ├── .github └── workflows │ ├── check-repos-updates.yml │ └── check-repos-updates.sh └── README.md /CODEOWNERS: -------------------------------------------------------------------------------- 1 | aspnet-mvc/ @antonmironovv @mihaela-lukanova @ivaylo-milanov @IvanDanchev @eyupyusein @VicTachev 2 | -------------------------------------------------------------------------------- /db/CountryOrders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/db/CountryOrders.sql -------------------------------------------------------------------------------- /db/CountryRevenue.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/db/CountryRevenue.sql -------------------------------------------------------------------------------- /angular/components/about/about.js: -------------------------------------------------------------------------------- 1 | angular.module('app.about', []).controller('AboutController', function() {}); 2 | -------------------------------------------------------------------------------- /db/CountryCustomers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/db/CountryCustomers.sql -------------------------------------------------------------------------------- /db/CountryMarketShare.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/db/CountryMarketShare.sql -------------------------------------------------------------------------------- /db/CountryTopProducts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/db/CountryTopProducts.sql -------------------------------------------------------------------------------- /html/Content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/favicon.ico -------------------------------------------------------------------------------- /angular/Content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/favicon.ico -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /db/CountryCustomersTotal.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/db/CountryCustomersTotal.sql -------------------------------------------------------------------------------- /html/Content/Employees/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/1.png -------------------------------------------------------------------------------- /html/Content/Employees/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/2.png -------------------------------------------------------------------------------- /html/Content/Employees/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/3.png -------------------------------------------------------------------------------- /html/Content/Employees/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/4.png -------------------------------------------------------------------------------- /html/Content/Employees/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/5.png -------------------------------------------------------------------------------- /html/Content/Employees/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/6.png -------------------------------------------------------------------------------- /html/Content/Employees/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/7.png -------------------------------------------------------------------------------- /html/Content/Employees/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/8.png -------------------------------------------------------------------------------- /html/Content/Employees/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/9.png -------------------------------------------------------------------------------- /html/Content/Products/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/1.jpg -------------------------------------------------------------------------------- /html/Content/Products/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/10.jpg -------------------------------------------------------------------------------- /html/Content/Products/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/11.jpg -------------------------------------------------------------------------------- /html/Content/Products/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/12.jpg -------------------------------------------------------------------------------- /html/Content/Products/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/13.jpg -------------------------------------------------------------------------------- /html/Content/Products/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/14.jpg -------------------------------------------------------------------------------- /html/Content/Products/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/15.jpg -------------------------------------------------------------------------------- /html/Content/Products/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/16.jpg -------------------------------------------------------------------------------- /html/Content/Products/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/17.jpg -------------------------------------------------------------------------------- /html/Content/Products/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/18.jpg -------------------------------------------------------------------------------- /html/Content/Products/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/19.jpg -------------------------------------------------------------------------------- /html/Content/Products/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/2.jpg -------------------------------------------------------------------------------- /html/Content/Products/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/20.jpg -------------------------------------------------------------------------------- /html/Content/Products/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/21.jpg -------------------------------------------------------------------------------- /html/Content/Products/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/22.jpg -------------------------------------------------------------------------------- /html/Content/Products/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/23.jpg -------------------------------------------------------------------------------- /html/Content/Products/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/24.jpg -------------------------------------------------------------------------------- /html/Content/Products/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/25.jpg -------------------------------------------------------------------------------- /html/Content/Products/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/26.jpg -------------------------------------------------------------------------------- /html/Content/Products/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/27.jpg -------------------------------------------------------------------------------- /html/Content/Products/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/28.jpg -------------------------------------------------------------------------------- /html/Content/Products/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/29.jpg -------------------------------------------------------------------------------- /html/Content/Products/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/3.jpg -------------------------------------------------------------------------------- /html/Content/Products/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/30.jpg -------------------------------------------------------------------------------- /html/Content/Products/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/31.jpg -------------------------------------------------------------------------------- /html/Content/Products/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/32.jpg -------------------------------------------------------------------------------- /html/Content/Products/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/33.jpg -------------------------------------------------------------------------------- /html/Content/Products/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/34.jpg -------------------------------------------------------------------------------- /html/Content/Products/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/35.jpg -------------------------------------------------------------------------------- /html/Content/Products/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/36.jpg -------------------------------------------------------------------------------- /html/Content/Products/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/37.jpg -------------------------------------------------------------------------------- /html/Content/Products/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/38.jpg -------------------------------------------------------------------------------- /html/Content/Products/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/39.jpg -------------------------------------------------------------------------------- /html/Content/Products/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/4.jpg -------------------------------------------------------------------------------- /html/Content/Products/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/40.jpg -------------------------------------------------------------------------------- /html/Content/Products/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/41.jpg -------------------------------------------------------------------------------- /html/Content/Products/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/42.jpg -------------------------------------------------------------------------------- /html/Content/Products/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/43.jpg -------------------------------------------------------------------------------- /html/Content/Products/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/44.jpg -------------------------------------------------------------------------------- /html/Content/Products/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/45.jpg -------------------------------------------------------------------------------- /html/Content/Products/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/46.jpg -------------------------------------------------------------------------------- /html/Content/Products/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/47.jpg -------------------------------------------------------------------------------- /html/Content/Products/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/48.jpg -------------------------------------------------------------------------------- /html/Content/Products/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/49.jpg -------------------------------------------------------------------------------- /html/Content/Products/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/5.jpg -------------------------------------------------------------------------------- /html/Content/Products/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/50.jpg -------------------------------------------------------------------------------- /html/Content/Products/51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/51.jpg -------------------------------------------------------------------------------- /html/Content/Products/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/52.jpg -------------------------------------------------------------------------------- /html/Content/Products/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/53.jpg -------------------------------------------------------------------------------- /html/Content/Products/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/54.jpg -------------------------------------------------------------------------------- /html/Content/Products/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/55.jpg -------------------------------------------------------------------------------- /html/Content/Products/56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/56.jpg -------------------------------------------------------------------------------- /html/Content/Products/57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/57.jpg -------------------------------------------------------------------------------- /html/Content/Products/58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/58.jpg -------------------------------------------------------------------------------- /html/Content/Products/59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/59.jpg -------------------------------------------------------------------------------- /html/Content/Products/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/6.jpg -------------------------------------------------------------------------------- /html/Content/Products/60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/60.jpg -------------------------------------------------------------------------------- /html/Content/Products/61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/61.jpg -------------------------------------------------------------------------------- /html/Content/Products/62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/62.jpg -------------------------------------------------------------------------------- /html/Content/Products/63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/63.jpg -------------------------------------------------------------------------------- /html/Content/Products/64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/64.jpg -------------------------------------------------------------------------------- /html/Content/Products/65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/65.jpg -------------------------------------------------------------------------------- /html/Content/Products/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/66.jpg -------------------------------------------------------------------------------- /html/Content/Products/67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/67.jpg -------------------------------------------------------------------------------- /html/Content/Products/68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/68.jpg -------------------------------------------------------------------------------- /html/Content/Products/69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/69.jpg -------------------------------------------------------------------------------- /html/Content/Products/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/7.jpg -------------------------------------------------------------------------------- /html/Content/Products/70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/70.jpg -------------------------------------------------------------------------------- /html/Content/Products/71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/71.jpg -------------------------------------------------------------------------------- /html/Content/Products/72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/72.jpg -------------------------------------------------------------------------------- /html/Content/Products/73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/73.jpg -------------------------------------------------------------------------------- /html/Content/Products/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/74.jpg -------------------------------------------------------------------------------- /html/Content/Products/75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/75.jpg -------------------------------------------------------------------------------- /html/Content/Products/76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/76.jpg -------------------------------------------------------------------------------- /html/Content/Products/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/77.jpg -------------------------------------------------------------------------------- /html/Content/Products/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/78.jpg -------------------------------------------------------------------------------- /html/Content/Products/79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/79.jpg -------------------------------------------------------------------------------- /html/Content/Products/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/8.jpg -------------------------------------------------------------------------------- /html/Content/Products/80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/80.jpg -------------------------------------------------------------------------------- /html/Content/Products/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Products/9.jpg -------------------------------------------------------------------------------- /angular/Content/Employees/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/1.png -------------------------------------------------------------------------------- /angular/Content/Employees/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/2.png -------------------------------------------------------------------------------- /angular/Content/Employees/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/3.png -------------------------------------------------------------------------------- /angular/Content/Employees/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/4.png -------------------------------------------------------------------------------- /angular/Content/Employees/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/5.png -------------------------------------------------------------------------------- /angular/Content/Employees/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/6.png -------------------------------------------------------------------------------- /angular/Content/Employees/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/7.png -------------------------------------------------------------------------------- /angular/Content/Employees/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/8.png -------------------------------------------------------------------------------- /angular/Content/Employees/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/9.png -------------------------------------------------------------------------------- /angular/Content/Products/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/1.jpg -------------------------------------------------------------------------------- /angular/Content/Products/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/10.jpg -------------------------------------------------------------------------------- /angular/Content/Products/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/11.jpg -------------------------------------------------------------------------------- /angular/Content/Products/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/12.jpg -------------------------------------------------------------------------------- /angular/Content/Products/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/13.jpg -------------------------------------------------------------------------------- /angular/Content/Products/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/14.jpg -------------------------------------------------------------------------------- /angular/Content/Products/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/15.jpg -------------------------------------------------------------------------------- /angular/Content/Products/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/16.jpg -------------------------------------------------------------------------------- /angular/Content/Products/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/17.jpg -------------------------------------------------------------------------------- /angular/Content/Products/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/18.jpg -------------------------------------------------------------------------------- /angular/Content/Products/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/19.jpg -------------------------------------------------------------------------------- /angular/Content/Products/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/2.jpg -------------------------------------------------------------------------------- /angular/Content/Products/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/20.jpg -------------------------------------------------------------------------------- /angular/Content/Products/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/21.jpg -------------------------------------------------------------------------------- /angular/Content/Products/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/22.jpg -------------------------------------------------------------------------------- /angular/Content/Products/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/23.jpg -------------------------------------------------------------------------------- /angular/Content/Products/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/24.jpg -------------------------------------------------------------------------------- /angular/Content/Products/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/25.jpg -------------------------------------------------------------------------------- /angular/Content/Products/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/26.jpg -------------------------------------------------------------------------------- /angular/Content/Products/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/27.jpg -------------------------------------------------------------------------------- /angular/Content/Products/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/28.jpg -------------------------------------------------------------------------------- /angular/Content/Products/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/29.jpg -------------------------------------------------------------------------------- /angular/Content/Products/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/3.jpg -------------------------------------------------------------------------------- /angular/Content/Products/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/30.jpg -------------------------------------------------------------------------------- /angular/Content/Products/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/31.jpg -------------------------------------------------------------------------------- /angular/Content/Products/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/32.jpg -------------------------------------------------------------------------------- /angular/Content/Products/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/33.jpg -------------------------------------------------------------------------------- /angular/Content/Products/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/34.jpg -------------------------------------------------------------------------------- /angular/Content/Products/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/35.jpg -------------------------------------------------------------------------------- /angular/Content/Products/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/36.jpg -------------------------------------------------------------------------------- /angular/Content/Products/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/37.jpg -------------------------------------------------------------------------------- /angular/Content/Products/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/38.jpg -------------------------------------------------------------------------------- /angular/Content/Products/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/39.jpg -------------------------------------------------------------------------------- /angular/Content/Products/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/4.jpg -------------------------------------------------------------------------------- /angular/Content/Products/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/40.jpg -------------------------------------------------------------------------------- /angular/Content/Products/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/41.jpg -------------------------------------------------------------------------------- /angular/Content/Products/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/42.jpg -------------------------------------------------------------------------------- /angular/Content/Products/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/43.jpg -------------------------------------------------------------------------------- /angular/Content/Products/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/44.jpg -------------------------------------------------------------------------------- /angular/Content/Products/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/45.jpg -------------------------------------------------------------------------------- /angular/Content/Products/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/46.jpg -------------------------------------------------------------------------------- /angular/Content/Products/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/47.jpg -------------------------------------------------------------------------------- /angular/Content/Products/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/48.jpg -------------------------------------------------------------------------------- /angular/Content/Products/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/49.jpg -------------------------------------------------------------------------------- /angular/Content/Products/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/5.jpg -------------------------------------------------------------------------------- /angular/Content/Products/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/50.jpg -------------------------------------------------------------------------------- /angular/Content/Products/51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/51.jpg -------------------------------------------------------------------------------- /angular/Content/Products/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/52.jpg -------------------------------------------------------------------------------- /angular/Content/Products/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/53.jpg -------------------------------------------------------------------------------- /angular/Content/Products/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/54.jpg -------------------------------------------------------------------------------- /angular/Content/Products/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/55.jpg -------------------------------------------------------------------------------- /angular/Content/Products/56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/56.jpg -------------------------------------------------------------------------------- /angular/Content/Products/57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/57.jpg -------------------------------------------------------------------------------- /angular/Content/Products/58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/58.jpg -------------------------------------------------------------------------------- /angular/Content/Products/59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/59.jpg -------------------------------------------------------------------------------- /angular/Content/Products/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/6.jpg -------------------------------------------------------------------------------- /angular/Content/Products/60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/60.jpg -------------------------------------------------------------------------------- /angular/Content/Products/61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/61.jpg -------------------------------------------------------------------------------- /angular/Content/Products/62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/62.jpg -------------------------------------------------------------------------------- /angular/Content/Products/63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/63.jpg -------------------------------------------------------------------------------- /angular/Content/Products/64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/64.jpg -------------------------------------------------------------------------------- /angular/Content/Products/65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/65.jpg -------------------------------------------------------------------------------- /angular/Content/Products/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/66.jpg -------------------------------------------------------------------------------- /angular/Content/Products/67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/67.jpg -------------------------------------------------------------------------------- /angular/Content/Products/68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/68.jpg -------------------------------------------------------------------------------- /angular/Content/Products/69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/69.jpg -------------------------------------------------------------------------------- /angular/Content/Products/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/7.jpg -------------------------------------------------------------------------------- /angular/Content/Products/70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/70.jpg -------------------------------------------------------------------------------- /angular/Content/Products/71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/71.jpg -------------------------------------------------------------------------------- /angular/Content/Products/72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/72.jpg -------------------------------------------------------------------------------- /angular/Content/Products/73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/73.jpg -------------------------------------------------------------------------------- /angular/Content/Products/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/74.jpg -------------------------------------------------------------------------------- /angular/Content/Products/75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/75.jpg -------------------------------------------------------------------------------- /angular/Content/Products/76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/76.jpg -------------------------------------------------------------------------------- /angular/Content/Products/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/77.jpg -------------------------------------------------------------------------------- /angular/Content/Products/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/78.jpg -------------------------------------------------------------------------------- /angular/Content/Products/79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/79.jpg -------------------------------------------------------------------------------- /angular/Content/Products/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/8.jpg -------------------------------------------------------------------------------- /angular/Content/Products/80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/80.jpg -------------------------------------------------------------------------------- /angular/Content/Products/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Products/9.jpg -------------------------------------------------------------------------------- /html/Content/Employees/1-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/1-t.png -------------------------------------------------------------------------------- /html/Content/Employees/2-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/2-t.png -------------------------------------------------------------------------------- /html/Content/Employees/3-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/3-t.png -------------------------------------------------------------------------------- /html/Content/Employees/4-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/4-t.png -------------------------------------------------------------------------------- /html/Content/Employees/5-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/5-t.png -------------------------------------------------------------------------------- /html/Content/Employees/6-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/6-t.png -------------------------------------------------------------------------------- /html/Content/Employees/7-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/7-t.png -------------------------------------------------------------------------------- /html/Content/Employees/8-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/8-t.png -------------------------------------------------------------------------------- /html/Content/Employees/9-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Employees/9-t.png -------------------------------------------------------------------------------- /html/Content/Fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Fonts/icomoon.eot -------------------------------------------------------------------------------- /html/Content/Fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Fonts/icomoon.ttf -------------------------------------------------------------------------------- /html/Content/Fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/html/Content/Fonts/icomoon.woff -------------------------------------------------------------------------------- /angular/Content/Employees/1-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/1-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/2-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/2-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/3-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/3-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/4-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/4-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/5-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/5-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/6-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/6-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/7-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/7-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/8-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/8-t.png -------------------------------------------------------------------------------- /angular/Content/Employees/9-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Employees/9-t.png -------------------------------------------------------------------------------- /angular/Content/Fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Fonts/icomoon.eot -------------------------------------------------------------------------------- /angular/Content/Fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Fonts/icomoon.ttf -------------------------------------------------------------------------------- /angular/Content/Fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/angular/Content/Fonts/icomoon.woff -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Date.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().DatePickerFor(m => m)) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/DateTime.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().DateTimePickerFor(m => m)) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Time.cshtml: -------------------------------------------------------------------------------- 1 | @model DateTime? 2 | 3 | @(Html.Kendo().TimePickerFor(m => m)) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Email.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.TextBoxFor(model => model, new {@class="k-textbox" }) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/String.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.TextBoxFor(model => model, new {@class="k-textbox" }) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="KendoUI.Northwind.Dashboard.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Url.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.TextBoxFor(model => model, new {@class="k-textbox", type="url" }) -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | aspnet-mvc/kendoui-northwind-dashboard/bin 3 | aspnet-mvc/kendoui-northwind-dashboard/obj 4 | aspnet-mvc/packages 5 | aspnet-mvc/.vs/ 6 | bower_components 7 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Images/accent.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Images/bullet.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/favicon.ico -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/EmailAddress.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.TextBoxFor(model => model, new {@class="k-textbox", type="email" }) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Password.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @Html.TextBoxFor(model => model, new {@class="k-textbox", type="password" }) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/App_Data/NORTHWND.MDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/App_Data/NORTHWND.MDF -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/App_Data/northwind.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/App_Data/northwind.db -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/1.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/2.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/3.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/4.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/5.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/6.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/7.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/8.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/9.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Images/heroAccent.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Scripts/_references.js -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/1.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/2.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/3.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/4.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/5.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/6.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/7.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/8.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/9.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/10.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/11.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/12.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/13.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/14.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/15.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/16.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/17.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/18.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/19.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/20.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/21.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/22.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/23.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/24.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/25.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/26.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/27.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/28.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/29.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/30.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/31.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/32.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/33.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/34.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/35.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/36.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/37.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/38.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/39.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/40.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/41.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/42.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/43.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/44.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/45.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/46.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/47.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/48.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/49.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/50.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/51.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/52.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/53.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/54.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/55.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/56.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/57.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/58.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/59.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/60.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/61.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/62.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/63.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/64.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/65.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/66.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/67.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/68.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/69.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/70.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/71.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/72.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/73.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/73.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/74.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/74.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/75.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/75.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/76.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/76.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/77.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/77.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/78.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/78.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/79.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/79.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Products/80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Products/80.jpg -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/App_Data/NORTHWND_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/App_Data/NORTHWND_log.ldf -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/1-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/1-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/2-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/2-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/3-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/3-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/4-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/4-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/5-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/5-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/6-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/6-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/7-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/7-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/8-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/8-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/9-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Employees/9-t.png -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.eot -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.ttf -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/telerik/kendoui-northwind-dashboard/HEAD/aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.woff -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Float.cshtml: -------------------------------------------------------------------------------- 1 | @model float 2 | 3 | @(Html.Kendo().NumericTextBoxFor(m => m) 4 | .HtmlAttributes(new { style = "width:100%" }) 5 | ) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Number.cshtml: -------------------------------------------------------------------------------- 1 | @model double? 2 | 3 | @(Html.Kendo().NumericTextBoxFor(m => m) 4 | .HtmlAttributes(new { style = "width:100%" }) 5 | ) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Currency.cshtml: -------------------------------------------------------------------------------- 1 | @model decimal? 2 | 3 | @(Html.Kendo().CurrencyTextBoxFor(m => m) 4 | .HtmlAttributes(new {style="width:100%"}) 5 | .Min(0) 6 | ) 7 | 8 | 9 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/Integer.cshtml: -------------------------------------------------------------------------------- 1 | @model int? 2 | 3 | @(Html.Kendo().IntegerTextBoxFor(m => m) 4 | .HtmlAttributes(new { style = "width:100%" }) 5 | .Min(int.MinValue) 6 | .Max(int.MaxValue) 7 | ) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/GridForeignKey.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @( 4 | Html.Kendo().DropDownListFor(m => m) 5 | .BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"]) 6 | ) 7 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Home/EditorTemplates/ShipCountry.cshtml: -------------------------------------------------------------------------------- 1 | @model string 2 | 3 | @(Html.Kendo().DropDownListFor(m => m) 4 | .DataValueField("Country") 5 | .DataTextField("Country") 6 | .OptionLabel("-select country-") 7 | .DataSource(ds => ds.Read("Countries_Read", "Orders")) 8 | ) -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/EditorTemplates/CustomGridForeignKey.cshtml: -------------------------------------------------------------------------------- 1 | @model object 2 | 3 | @( 4 | Html.Kendo().DropDownListFor(m => m) 5 | .OptionLabel("-please select-") 6 | .ValuePrimitive(true) 7 | .BindTo((SelectList)ViewData[ViewData.TemplateInfo.GetFullHtmlFieldName("") + "_Data"]) 8 | ) 9 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Northwind.Designer.cs: -------------------------------------------------------------------------------- 1 | // Default code generation is disabled for model 'C:\repos\kendo-dashboard\aspnet-mvc\kendoui-northwind-dashboard\Models\Northwind.edmx'. 2 | // To enable default code generation, change the value of the 'Code Generation Strategy' designer 3 | // property to an alternate value. This property is available in the Properties Window when the model is 4 | // open in the designer. -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CategoryViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace KendoUI.Northwind.Dashboard.Models 8 | { 9 | public class CategoryViewModel 10 | { 11 | [Key] 12 | public int CategoryID { get; set; } 13 | public string CategoryName { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/ShipperViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace KendoUI.Northwind.Dashboard.Models 8 | { 9 | public class ShipperViewModel 10 | { 11 | [Key] 12 | public int ShipperID { get; set; } 13 | public string CompanyName { get; set; } 14 | public string Phone { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Northwind.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /.github/workflows/check-repos-updates.yml: -------------------------------------------------------------------------------- 1 | name: Check for updates across repos and create pull request 2 | 3 | on: workflow_dispatch 4 | jobs: 5 | check-repos-updates: 6 | runs-on: ubuntu-latest 7 | steps: 8 | 9 | - uses: actions/checkout@v4 10 | with: 11 | repository: ${{ github.repository }} 12 | 13 | - name: Clean up 14 | run: rm -rf kendo-* 15 | - name: Get repos deps 16 | run: .github/workflows/check-repos-updates.sh ${{ secrets.GH_TOKEN }} 17 | env: 18 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 19 | -------------------------------------------------------------------------------- /angular/README.md: -------------------------------------------------------------------------------- 1 | # Telerik Northwind Dashboard made with Angular JS 2 | 3 | ## Introduction 4 | 5 | Telerik Northwind Dashboard is a web app built with Telerik HTML5 Kendo UI widgets and AngularJS 1.4. 6 | The app showcases some of the most popular Kendo UI widgets such as Scheduler, Grid, TabStrip, Charts and Map and it’s enabled for touch. 7 | It has a simple and responsive UI based on Twitter Bootstrap and works on a wide range of devices. 8 | 9 | 10 | ## Install 11 | 12 | The application uses bower to maintain dependencies. Run `bower install` after cloning the repository. 13 | -------------------------------------------------------------------------------- /angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kendo-nortwhind-dashboard", 3 | "homepage": "https://github.com/telerik/kendoui-northwind-dashboard", 4 | "authors": [ 5 | "Petyo Ivanov " 6 | ], 7 | "description": "", 8 | "main": "", 9 | "moduleType": [ 10 | "globals" 11 | ], 12 | "keywords": [ 13 | "kendo", 14 | "angular" 15 | ], 16 | "license": "MIT", 17 | "ignore": [ 18 | "**/.*", 19 | "node_modules", 20 | "bower_components", 21 | "test", 22 | "tests" 23 | ], 24 | "dependencies": { 25 | "angular-new-router": "~0.5.3", 26 | "angular-resource": "~1.4.7", 27 | "angular": "~1.4.7" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/EmployeeTerritory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations.Schema; 4 | using System.ComponentModel.DataAnnotations; 5 | using System.Linq; 6 | using System.Web; 7 | 8 | namespace KendoUI.Northwind.Dashboard.Models 9 | { 10 | public class EmployeeTerritory 11 | { 12 | [Key, Column(Order = 0)] 13 | public int EmployeeID { get; set; } 14 | 15 | [Key, Column(Order = 1)] 16 | public string TerritoryID { get; set; } 17 | 18 | public Employee Employee { get; set; } 19 | public Territory Territory { get; set; } 20 | } 21 | } -------------------------------------------------------------------------------- /db/ProductsSalesByMonth.sql: -------------------------------------------------------------------------------- 1 | 2 | SET ANSI_NULLS ON 3 | GO 4 | SET QUOTED_IDENTIFIER ON 5 | GO 6 | 7 | CREATE PROCEDURE ProductsSalesByMonth 8 | @ProductID INT 9 | AS 10 | BEGIN 11 | SELECT CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) AS Date, [Order Details].Quantity FROM Orders 12 | INNER JOIN [Order Details] ON Orders.OrderID = [Order Details].OrderID 13 | WHERE [Order Details].ProductID = @ProductID 14 | GROUP BY CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME), [Order Details].Quantity 15 | END 16 | GO 17 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CustomerCustomerDemo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations.Schema; 4 | using System.ComponentModel.DataAnnotations; 5 | using System.Linq; 6 | using System.Web; 7 | 8 | namespace KendoUI.Northwind.Dashboard.Models 9 | { 10 | public class CustomerCustomerDemo 11 | { 12 | [Key, Column(Order = 0)] 13 | public string CustomerID { get; set; } 14 | 15 | [Key, Column(Order = 1)] 16 | public string CustomerTypeID { get; set; } 17 | 18 | public Customer Customer { get; set; } 19 | public CustomerDemographic CustomerDemographic { get; set; } 20 | } 21 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Configuration/SQLiteConfiguration.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity; 2 | using System.Data.Entity.Core.Common; 3 | using System.Data.SQLite; 4 | using System.Data.SQLite.EF6; 5 | 6 | namespace KendoUI.Northwind.Dashboard.Configuration 7 | { 8 | public class SQLiteConfiguration: DbConfiguration 9 | { 10 | public SQLiteConfiguration() 11 | { 12 | SetProviderFactory("System.Data.SQLite", SQLiteFactory.Instance); 13 | SetProviderFactory("System.Data.SQLite.EF6", SQLiteProviderFactory.Instance); 14 | SetProviderServices("System.Data.SQLite", (DbProviderServices)SQLiteProviderFactory.Instance.GetService(typeof(DbProviderServices))); 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Order_Detail.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel.DataAnnotations.Schema; 3 | 4 | namespace KendoUI.Northwind.Dashboard.Models 5 | { 6 | 7 | public partial class OrderDetail 8 | { 9 | [Key, Column(Order = 0)] 10 | public int OrderID { get; set; } 11 | [Key, Column(Order = 1)] 12 | public int ProductID { get; set; } 13 | public decimal UnitPrice { get; set; } 14 | public short Quantity { get; set; } 15 | public float Discount { get; set; } 16 | 17 | public virtual Order Order { get; set; } 18 | public virtual Product Product { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/OrderDetail.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations.Schema; 4 | using System.ComponentModel.DataAnnotations; 5 | using System.Linq; 6 | using System.Web; 7 | 8 | namespace KendoUI.Northwind.Dashboard.Models 9 | { 10 | public class Order_Detail 11 | { 12 | [Key, Column(Order = 0)] 13 | public int OrderID { get; set; } 14 | 15 | [Key, Column(Order = 1)] 16 | public int ProductID { get; set; } 17 | 18 | public decimal UnitPrice { get; set; } 19 | public short Quantity { get; set; } 20 | public float Discount { get; set; } 21 | 22 | public Order Order { get; set; } 23 | public Product Product { get; set; } 24 | } 25 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CustOrderHist_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CustOrderHist_Result 15 | { 16 | public string ProductName { get; set; } 17 | public Nullable Total { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CountryMarketShare_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CountryMarketShare_Result 15 | { 16 | public string Country { get; set; } 17 | public Nullable Sales { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CountryOrders_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CountryOrders_Result 15 | { 16 | public Nullable Date { get; set; } 17 | public Nullable Value { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/SalesByCategory_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class SalesByCategory_Result 15 | { 16 | public string ProductName { get; set; } 17 | public Nullable TotalPurchase { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CountryRevenue_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CountryRevenue_Result 15 | { 16 | public Nullable Date { get; set; } 17 | public Nullable Value { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/ProductsSalesByMonth_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class ProductsSalesByMonth_Result 15 | { 16 | public Nullable Date { get; set; } 17 | public short Quantity { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /db/MonthlySalesByEmployee.sql: -------------------------------------------------------------------------------- 1 | SET ANSI_NULLS ON 2 | GO 3 | SET QUOTED_IDENTIFIER ON 4 | GO 5 | CREATE PROCEDURE MonthlySalesByEmployee 6 | @EmployeeID INT 7 | AS 8 | BEGIN 9 | SET NOCOUNT ON; 10 | 11 | SELECT Orders.EmployeeID, 12 | SUM((Quantity * UnitPrice) - (Quantity * UnitPrice * Discount)) AS EmployeeSales, 13 | CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) AS Date 14 | FROM [Order Details] 15 | INNER JOIN Orders ON Orders.OrderID = [Order Details].OrderID 16 | WHERE Orders.EmployeeID = @EmployeeID 17 | GROUP BY Orders.EmployeeID, CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) 18 | END 19 | GO 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CountryCustomers_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CountryCustomers_Result 15 | { 16 | public Nullable Value { get; set; } 17 | public Nullable Date { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Order_Subtotal.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Order_Subtotal 16 | { 17 | public int OrderID { get; set; } 18 | public Nullable Subtotal { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Current_Product_List.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Current_Product_List 16 | { 17 | public int ProductID { get; set; } 18 | public string ProductName { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Ten_Most_Expensive_Products_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class Ten_Most_Expensive_Products_Result 15 | { 16 | public string TenMostExpensiveProducts { get; set; } 17 | public Nullable UnitPrice { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Category_Sales_for_1997.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Category_Sales_for_1997 16 | { 17 | public string CategoryName { get; set; } 18 | public Nullable CategorySales { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Products_Above_Average_Price.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Products_Above_Average_Price 16 | { 17 | public string ProductName { get; set; } 18 | public Nullable UnitPrice { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CountryTopProducts_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CountryTopProducts_Result 15 | { 16 | public string ProductName { get; set; } 17 | public Nullable Date { get; set; } 18 | public Nullable Quantity { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/SalesAmounts_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class SalesAmounts_Result 15 | { 16 | public Nullable TotalSales { get; set; } 17 | public Nullable EmployeeSales { get; set; } 18 | public Nullable Date { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/MonthlySalesByEmployee_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class MonthlySalesByEmployee_Result 15 | { 16 | public Nullable EmployeeID { get; set; } 17 | public Nullable EmployeeSales { get; set; } 18 | public System.DateTime Date { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/EmployeeViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace KendoUI.Northwind.Dashboard.Models 2 | { 3 | using System; 4 | using System.ComponentModel.DataAnnotations; 5 | using System.Web.Mvc; 6 | 7 | public class EmployeeViewModel 8 | { 9 | [Key] 10 | public int EmployeeID { get; set; } 11 | [Required] 12 | public string FirstName { get; set; } 13 | public string EmployeeName { get; set; } 14 | [Required] 15 | public string LastName { get; set; } 16 | public string Title { get; set; } 17 | public string Country { get; set; } 18 | public string City { get; set; } 19 | public string Address { get; set; } 20 | public string HomePhone { get; set; } 21 | [Required] 22 | [AllowHtml] 23 | public string Notes { get; set; } 24 | } 25 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Product_Sales_for_1997.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Product_Sales_for_1997 16 | { 17 | public string CategoryName { get; set; } 18 | public string ProductName { get; set; } 19 | public Nullable ProductSales { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Sales_by_Year_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class Sales_by_Year_Result 15 | { 16 | public Nullable ShippedDate { get; set; } 17 | public int OrderID { get; set; } 18 | public Nullable Subtotal { get; set; } 19 | public string Year { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Summary_of_Sales_by_Year.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Summary_of_Sales_by_Year 16 | { 17 | public Nullable ShippedDate { get; set; } 18 | public int OrderID { get; set; } 19 | public Nullable Subtotal { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Summary_of_Sales_by_Quarter.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Summary_of_Sales_by_Quarter 16 | { 17 | public Nullable ShippedDate { get; set; } 18 | public int OrderID { get; set; } 19 | public Nullable Subtotal { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Sales_by_Category.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Sales_by_Category 16 | { 17 | public int CategoryID { get; set; } 18 | public string CategoryName { get; set; } 19 | public string ProductName { get; set; } 20 | public Nullable ProductSales { get; set; } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CustOrdersOrders_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CustOrdersOrders_Result 15 | { 16 | public int OrderID { get; set; } 17 | public Nullable OrderDate { get; set; } 18 | public Nullable RequiredDate { get; set; } 19 | public Nullable ShippedDate { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CustOrdersDetail_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class CustOrdersDetail_Result 15 | { 16 | public string ProductName { get; set; } 17 | public decimal UnitPrice { get; set; } 18 | public short Quantity { get; set; } 19 | public Nullable Discount { get; set; } 20 | public Nullable ExtendedPrice { get; set; } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Sales_Totals_by_Amount.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Sales_Totals_by_Amount 16 | { 17 | public Nullable SaleAmount { get; set; } 18 | public int OrderID { get; set; } 19 | public string CompanyName { get; set; } 20 | public Nullable ShippedDate { get; set; } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Alphabetical_list_of_product.cs: -------------------------------------------------------------------------------- 1 | namespace KendoUI.Northwind.Dashboard.Models 2 | { 3 | using System; 4 | using System.Collections.Generic; 5 | using System.ComponentModel.DataAnnotations; 6 | 7 | public partial class Alphabetical_list_of_product 8 | { 9 | [Key] 10 | public int ProductID { get; set; } 11 | public string ProductName { get; set; } 12 | public Nullable SupplierID { get; set; } 13 | public Nullable CategoryID { get; set; } 14 | public string QuantityPerUnit { get; set; } 15 | public Nullable UnitPrice { get; set; } 16 | public Nullable UnitsInStock { get; set; } 17 | public Nullable UnitsOnOrder { get; set; } 18 | public Nullable ReorderLevel { get; set; } 19 | public bool Discontinued { get; set; } 20 | public string CategoryName { get; set; } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /angular/Content/employee-quarter-sales.json: -------------------------------------------------------------------------------- 1 | [{"EmployeeID":1,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":2187.0705000,"Target":15000.0}]},{"EmployeeID":2,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":1929.975000,"Target":15000.0}]},{"EmployeeID":3,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]},{"EmployeeID":4,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":6010.750000,"Target":15000.0}]},{"EmployeeID":5,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]},{"EmployeeID":6,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]},{"EmployeeID":7,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":232.085000,"Target":15000.0}]},{"EmployeeID":8,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":2525.180000,"Target":15000.0}]},{"EmployeeID":9,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]}] -------------------------------------------------------------------------------- /html/Content/employee-quarter-sales.json: -------------------------------------------------------------------------------- 1 | [{"EmployeeID":1,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":2187.0705000,"Target":15000.0}]},{"EmployeeID":2,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":1929.975000,"Target":15000.0}]},{"EmployeeID":3,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]},{"EmployeeID":4,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":6010.750000,"Target":15000.0}]},{"EmployeeID":5,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]},{"EmployeeID":6,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]},{"EmployeeID":7,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":232.085000,"Target":15000.0}]},{"EmployeeID":8,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":2525.180000,"Target":15000.0}]},{"EmployeeID":9,"Sales":[{"OrderID":0,"OrderDate":"1998-08-01T12:00:00","Current":0.0,"Target":15000.0}]}] -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Products_by_Category.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Products_by_Category 16 | { 17 | public string CategoryName { get; set; } 18 | public string ProductName { get; set; } 19 | public string QuantityPerUnit { get; set; } 20 | public Nullable UnitsInStock { get; set; } 21 | public bool Discontinued { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Region.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Region 16 | { 17 | public Region() 18 | { 19 | this.Territories = new HashSet(); 20 | } 21 | 22 | public int RegionID { get; set; } 23 | public string RegionDescription { get; set; } 24 | 25 | public virtual ICollection Territories { get; set; } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Employee_Sales_by_Country_Result.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | 14 | public partial class Employee_Sales_by_Country_Result 15 | { 16 | public string Country { get; set; } 17 | public string LastName { get; set; } 18 | public string FirstName { get; set; } 19 | public Nullable ShippedDate { get; set; } 20 | public int OrderID { get; set; } 21 | public Nullable SaleAmount { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Shipper.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Shipper 16 | { 17 | public Shipper() 18 | { 19 | this.Orders = new HashSet(); 20 | } 21 | 22 | public int ShipperID { get; set; } 23 | public string CompanyName { get; set; } 24 | public string Phone { get; set; } 25 | 26 | public virtual ICollection Orders { get; set; } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "kendoui-northwind-dashboard", "kendoui-northwind-dashboard\kendoui-northwind-dashboard.csproj", "{1C777D71-83EE-43C0-B60A-D28C2E90E4C2}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {1C777D71-83EE-43C0-B60A-D28C2E90E4C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {1C777D71-83EE-43C0-B60A-D28C2E90E4C2}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {1C777D71-83EE-43C0-B60A-D28C2E90E4C2}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {1C777D71-83EE-43C0-B60A-D28C2E90E4C2}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CustomerViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace KendoUI.Northwind.Dashboard.Models 8 | { 9 | public class CustomerViewModel 10 | { 11 | [ScaffoldColumn(false)] 12 | public string CustomerID { get; set; } 13 | [Required] 14 | public string CompanyName { get; set; } 15 | [Required] 16 | public string ContactName { get; set; } 17 | public string ContactTitle { get; set; } 18 | public string Address { get; set; } 19 | [Required] 20 | public string City { get; set; } 21 | public string Region { get; set; } 22 | public string PostalCode { get; set; } 23 | [Required] 24 | public string Country { get; set; } 25 | [Required] 26 | public string Phone { get; set; } 27 | public string Fax { get; set; } 28 | public Nullable Bool { get; set; } 29 | } 30 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Order_Details_Extended.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Order_Details_Extended 16 | { 17 | public int OrderID { get; set; } 18 | public int ProductID { get; set; } 19 | public string ProductName { get; set; } 20 | public decimal UnitPrice { get; set; } 21 | public short Quantity { get; set; } 22 | public float Discount { get; set; } 23 | public Nullable ExtendedPrice { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/OrderDetailViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | 7 | namespace KendoUI.Northwind.Dashboard.Models 8 | { 9 | public class OrderDetailViewModel 10 | { 11 | public string OrderDetailID 12 | { 13 | get 14 | { 15 | return this.OrderID + "_" + this.ProductID; 16 | } 17 | } 18 | 19 | [Key] 20 | public int OrderID { get; set; } 21 | public int CustomerID { get; set; } 22 | public int ProductID { get; set; } 23 | 24 | [Required] 25 | [UIHint("Currency")] 26 | public decimal UnitPrice { get; set; } 27 | 28 | [Required] 29 | [UIHint("Integer")] 30 | [Range(1,1000)] 31 | public int Quantity { get; set; } 32 | 33 | [Required] 34 | [UIHint("Float")] 35 | [Range(0, 1)] 36 | public float Discount { get; set; } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Category.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Category 16 | { 17 | public Category() 18 | { 19 | this.Products = new HashSet(); 20 | } 21 | 22 | public int CategoryID { get; set; } 23 | public string CategoryName { get; set; } 24 | public string Description { get; set; } 25 | public byte[] Picture { get; set; } 26 | 27 | public virtual ICollection Products { get; set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/CustomerDemographic.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | using System.ComponentModel.DataAnnotations; 15 | 16 | public partial class CustomerDemographic 17 | { 18 | public CustomerDemographic() 19 | { 20 | this.Customers = new HashSet(); 21 | } 22 | 23 | [Key] 24 | public string CustomerTypeID { get; set; } 25 | public string CustomerDesc { get; set; } 26 | 27 | public virtual ICollection Customers { get; set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Territory.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Territory 16 | { 17 | public Territory() 18 | { 19 | this.Employees = new HashSet(); 20 | } 21 | 22 | public string TerritoryID { get; set; } 23 | public string TerritoryDescription { get; set; } 24 | public int RegionID { get; set; } 25 | 26 | public virtual Region Region { get; set; } 27 | public virtual ICollection Employees { get; set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Web.Debug.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Web.Release.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Supplier.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Supplier 16 | { 17 | public Supplier() 18 | { 19 | this.Products = new HashSet(); 20 | } 21 | 22 | public int SupplierID { get; set; } 23 | public string CompanyName { get; set; } 24 | public string ContactName { get; set; } 25 | public string ContactTitle { get; set; } 26 | public string Address { get; set; } 27 | public string City { get; set; } 28 | public string Region { get; set; } 29 | public string PostalCode { get; set; } 30 | public string Country { get; set; } 31 | public string Phone { get; set; } 32 | public string Fax { get; set; } 33 | public string HomePage { get; set; } 34 | 35 | public virtual ICollection Products { get; set; } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/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("KendoUI.Northwind.Dashboard")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("KendoUI.Northwind.Dashboard")] 13 | [assembly: AssemblyCopyright("Copyright © 2024")] 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("ee7a3d55-9d4a-4aed-b197-91281e90ed28")] 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 Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Product.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Product 16 | { 17 | public Product() 18 | { 19 | this.Order_Details = new HashSet(); 20 | } 21 | 22 | public int ProductID { get; set; } 23 | public string ProductName { get; set; } 24 | public Nullable SupplierID { get; set; } 25 | public Nullable CategoryID { get; set; } 26 | public string QuantityPerUnit { get; set; } 27 | public Nullable UnitPrice { get; set; } 28 | public Nullable UnitsInStock { get; set; } 29 | public Nullable UnitsOnOrder { get; set; } 30 | public Nullable ReorderLevel { get; set; } 31 | public bool Discontinued { get; set; } 32 | 33 | public virtual Category Category { get; set; } 34 | public virtual ICollection Order_Details { get; set; } 35 | public virtual Supplier Supplier { get; set; } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/kendoui-northwind-dashboard.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug|Any CPU 5 | false 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | CurrentPage 20 | True 21 | False 22 | False 23 | False 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | True 33 | False 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /angular/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Customer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Customer 16 | { 17 | public Customer() 18 | { 19 | this.Orders = new HashSet(); 20 | this.CustomerDemographics = new HashSet(); 21 | } 22 | 23 | public string CustomerID { get; set; } 24 | public string CompanyName { get; set; } 25 | public string ContactName { get; set; } 26 | public string ContactTitle { get; set; } 27 | public string Address { get; set; } 28 | public string City { get; set; } 29 | public string Region { get; set; } 30 | public string PostalCode { get; set; } 31 | public string Country { get; set; } 32 | public string Phone { get; set; } 33 | public string Fax { get; set; } 34 | 35 | public virtual ICollection Orders { get; set; } 36 | public virtual ICollection CustomerDemographics { get; set; } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /html/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using KendoUI.Northwind.Dashboard.App_Start; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Data.SQLite; 5 | using System.Linq; 6 | using System.Web; 7 | using System.Web.Http; 8 | using System.Web.Mvc; 9 | using System.Web.Optimization; 10 | using System.Web.Routing; 11 | using System.Web.Services.Description; 12 | 13 | namespace KendoUI.Northwind.Dashboard 14 | { 15 | // Note: For instructions on enabling IIS6 or IIS7 classic mode, 16 | // visit http://go.microsoft.com/?LinkId=9394801 17 | 18 | public class MvcApplication : System.Web.HttpApplication 19 | { 20 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 21 | { 22 | filters.Add(new HandleErrorAttribute()); 23 | } 24 | 25 | public static void RegisterRoutes(RouteCollection routes) 26 | { 27 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 28 | 29 | routes.MapHttpRoute( 30 | name: "DefaultApi", 31 | routeTemplate: "api/{controller}/{id}", 32 | defaults: new { id = RouteParameter.Optional } 33 | ); 34 | 35 | routes.MapRoute( 36 | name: "Default", 37 | url: "{controller}/{action}/{id}", 38 | defaults: new { controller = "Home", action = "RegionalSalesStatus", id = UrlParameter.Optional } 39 | ); 40 | } 41 | 42 | protected void Application_Start() 43 | { 44 | AreaRegistration.RegisterAllAreas(); 45 | 46 | RegisterGlobalFilters(GlobalFilters.Filters); 47 | RegisterRoutes(RouteTable.Routes); 48 | } 49 | } 50 | } -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Orders_Qry.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Orders_Qry 16 | { 17 | public int OrderID { get; set; } 18 | public string CustomerID { get; set; } 19 | public Nullable EmployeeID { get; set; } 20 | public Nullable OrderDate { get; set; } 21 | public Nullable RequiredDate { get; set; } 22 | public Nullable ShippedDate { get; set; } 23 | public Nullable ShipVia { get; set; } 24 | public Nullable Freight { get; set; } 25 | public string ShipName { get; set; } 26 | public string ShipAddress { get; set; } 27 | public string ShipCity { get; set; } 28 | public string ShipRegion { get; set; } 29 | public string ShipPostalCode { get; set; } 30 | public string ShipCountry { get; set; } 31 | public string CompanyName { get; set; } 32 | public string Address { get; set; } 33 | public string City { get; set; } 34 | public string Region { get; set; } 35 | public string PostalCode { get; set; } 36 | public string Country { get; set; } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/SaleViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel.DataAnnotations; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.Mvc; 7 | using Kendo.Mvc.UI; 8 | 9 | namespace KendoUI.Northwind.Dashboard.Models 10 | { 11 | public class QuarterToDateSalesViewModel 12 | { 13 | [Key] 14 | public int OrderID { get; set; } 15 | public DateTime OrderDate { get; set; } 16 | public decimal Current { get; set; } 17 | public decimal Target { get; set; } 18 | } 19 | 20 | public class SaleViewModel : ISchedulerEvent 21 | { 22 | [Key] 23 | public int SaleID { get; set; } 24 | public string Title { get; set; } 25 | public string Description { get; set; } 26 | 27 | private DateTime start; 28 | public DateTime Start 29 | { 30 | get 31 | { 32 | return start; 33 | } 34 | set 35 | { 36 | start = value.ToUniversalTime(); 37 | } 38 | } 39 | 40 | public string StartTimezone { get; set; } 41 | 42 | private DateTime end; 43 | public DateTime End 44 | { 45 | get 46 | { 47 | return end; 48 | } 49 | set 50 | { 51 | end = value.ToUniversalTime(); 52 | } 53 | } 54 | 55 | public string EndTimezone { get; set; } 56 | public string RecurrenceRule { get; set; } 57 | public int? RecurrenceID { get; set; } 58 | public string RecurrenceException { get; set; } 59 | public bool IsAllDay { get; set; } 60 | public int? EmployeeID{ get; set; } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /db/SalesAmounts.sql: -------------------------------------------------------------------------------- 1 | SET ANSI_NULLS ON 2 | GO 3 | SET QUOTED_IDENTIFIER ON 4 | GO 5 | CREATE PROCEDURE [dbo].[SalesAmounts] 6 | @EmployeeID INT 7 | AS 8 | BEGIN 9 | SET NOCOUNT ON; 10 | 11 | SELECT AllSales.TotalSales AS TotalSales, EmployeeSales.EmployeeSales AS EmployeeSales, AllSales.Date from 12 | (SELECT Sales.Date, SUM(Sales.EmployeeSales) AS TotalSales FROM 13 | ( 14 | SELECT Orders.EmployeeID, 15 | SUM((Quantity * UnitPrice) - (Quantity * UnitPrice * Discount)) AS EmployeeSales, 16 | CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) AS Date 17 | FROM [Order Details] 18 | INNER JOIN Orders ON Orders.OrderID = [Order Details].OrderID 19 | GROUP BY Orders.EmployeeID, CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) 20 | ) AS Sales 21 | GROUP BY Sales.Date 22 | ) AS AllSales 23 | LEFT OUTER JOIN 24 | (SELECT Orders.EmployeeID, 25 | SUM((Quantity * UnitPrice) - (Quantity * UnitPrice * Discount)) AS EmployeeSales, 26 | CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) AS Date 27 | FROM [Order Details] 28 | INNER JOIN Orders ON Orders.OrderID = [Order Details].OrderID 29 | WHERE Orders.EmployeeID = @EmployeeID 30 | GROUP BY Orders.EmployeeID, CAST(CONVERT(VARCHAR, DATEPART(YEAR, Orders.OrderDate)) + '-' + CONVERT(VARCHAR, DATEPART(MONTH, Orders.OrderDate)) + '-1' AS DATETIME) 31 | ) AS EmployeeSales 32 | ON AllSales.Date = EmployeeSales.Date 33 | END 34 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Order.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Order 16 | { 17 | public Order() 18 | { 19 | this.Order_Details = new HashSet(); 20 | } 21 | 22 | public int OrderID { get; set; } 23 | public string CustomerID { get; set; } 24 | public Nullable EmployeeID { get; set; } 25 | public Nullable OrderDate { get; set; } 26 | public Nullable RequiredDate { get; set; } 27 | public Nullable ShippedDate { get; set; } 28 | public Nullable ShipVia { get; set; } 29 | public Nullable Freight { get; set; } 30 | public string ShipName { get; set; } 31 | public string ShipAddress { get; set; } 32 | public string ShipCity { get; set; } 33 | public string ShipRegion { get; set; } 34 | public string ShipPostalCode { get; set; } 35 | public string ShipCountry { get; set; } 36 | public int? ShipperID { get; set; } 37 | 38 | public virtual Employee Employee { get; set; } 39 | public virtual ICollection Order_Details { get; set; } 40 | public virtual Shipper Shipper { get; set; } 41 | public virtual Customer Customer { get; set; } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/ProductViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.DataAnnotations; 2 | using System.ComponentModel; 3 | using System; 4 | 5 | 6 | namespace KendoUI.Northwind.Dashboard.Models 7 | { 8 | public class ProductViewModel 9 | { 10 | [Key] 11 | [ScaffoldColumn(false)] 12 | public int ProductID 13 | { 14 | get; 15 | set; 16 | } 17 | 18 | [Required] 19 | [DisplayName("Product name")] 20 | public string ProductName 21 | { 22 | get; 23 | set; 24 | } 25 | 26 | [DisplayName("Unit price")] 27 | [DataType(DataType.Currency)] 28 | [Range(0, int.MaxValue)] 29 | public decimal UnitPrice 30 | { 31 | get; 32 | set; 33 | } 34 | 35 | [DisplayName("Units in stock")] 36 | [DataType("Integer")] 37 | [Range(0, int.MaxValue)] 38 | public int UnitsInStock 39 | { 40 | get; 41 | set; 42 | } 43 | 44 | public bool Discontinued 45 | { 46 | get; 47 | set; 48 | } 49 | 50 | [DisplayName("Last supply")] 51 | [DataType(DataType.Date)] 52 | public DateTime LastSupply 53 | { 54 | get; 55 | set; 56 | } 57 | 58 | [DataType("Integer")] 59 | public int UnitsOnOrder 60 | { 61 | get; 62 | set; 63 | } 64 | 65 | [UIHint("ClientCategory")] 66 | public CategoryViewModel Category 67 | { 68 | get; 69 | set; 70 | } 71 | 72 | public int? CategoryID { get; set; } 73 | 74 | public string QuantityPerUnit { get; set; } 75 | 76 | public int ReorderLevel { get; set; } 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/OrderViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.ComponentModel.DataAnnotations; 5 | using System.Linq; 6 | using System.Web; 7 | 8 | namespace KendoUI.Northwind.Dashboard.Models 9 | { 10 | public class OrderViewModel 11 | { 12 | [Key] 13 | [ScaffoldColumn(false)] 14 | public int OrderID { get; set; } 15 | 16 | [Required] 17 | [UIHint("CustomGridForeignKey")] 18 | [DisplayName("Customer")] 19 | public string CustomerID { get; set; } 20 | 21 | [ScaffoldColumn(false)] 22 | public string ContactName { get; set; } 23 | 24 | public decimal? Freight { get; set; } 25 | 26 | [Required] 27 | [DisplayName("Ship Address")] 28 | public string ShipAddress { get; set; } 29 | 30 | [Required] 31 | [DataType(DataType.Date)] 32 | [DisplayName("Order Date")] 33 | public DateTime? OrderDate { get; set; } 34 | 35 | [DataType(DataType.Date)] 36 | [DisplayName("Shipped Date")] 37 | public DateTime? ShippedDate { get; set; } 38 | 39 | [Required] 40 | [UIHint("ShipCountry")] 41 | [DisplayName("Ship Country")] 42 | public string ShipCountry { get; set; } 43 | 44 | [Required] 45 | [DisplayName("Ship City")] 46 | public string ShipCity { get; set; } 47 | 48 | [Required] 49 | [DisplayName("Ship Name")] 50 | public string ShipName { get; set; } 51 | 52 | [UIHint("CustomGridForeignKey")] 53 | [DisplayName("Employee")] 54 | public int? EmployeeID { get; set; } 55 | 56 | [UIHint("CustomGridForeignKey")] 57 | public int? ShipVia { get; set; } 58 | 59 | //[Required] 60 | [DisplayName("Ship Postal Code")] 61 | public string ShipPostalCode { get; set; } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Invoice.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Invoice 16 | { 17 | public string ShipName { get; set; } 18 | public string ShipAddress { get; set; } 19 | public string ShipCity { get; set; } 20 | public string ShipRegion { get; set; } 21 | public string ShipPostalCode { get; set; } 22 | public string ShipCountry { get; set; } 23 | public string CustomerID { get; set; } 24 | public string CustomerName { get; set; } 25 | public string Address { get; set; } 26 | public string City { get; set; } 27 | public string Region { get; set; } 28 | public string PostalCode { get; set; } 29 | public string Country { get; set; } 30 | public string Salesperson { get; set; } 31 | public int OrderID { get; set; } 32 | public Nullable OrderDate { get; set; } 33 | public Nullable RequiredDate { get; set; } 34 | public Nullable ShippedDate { get; set; } 35 | public string ShipperName { get; set; } 36 | public int ProductID { get; set; } 37 | public string ProductName { get; set; } 38 | public decimal UnitPrice { get; set; } 39 | public short Quantity { get; set; } 40 | public float Discount { get; set; } 41 | public Nullable ExtendedPrice { get; set; } 42 | public Nullable Freight { get; set; } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Models/Employee.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace KendoUI.Northwind.Dashboard.Models 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Employee 16 | { 17 | public Employee() 18 | { 19 | this.Employees1 = new HashSet(); 20 | this.Orders = new HashSet(); 21 | this.Territories = new HashSet(); 22 | } 23 | 24 | public int EmployeeID { get; set; } 25 | public string LastName { get; set; } 26 | public string FirstName { get; set; } 27 | public string Title { get; set; } 28 | public string TitleOfCourtesy { get; set; } 29 | public Nullable BirthDate { get; set; } 30 | public Nullable HireDate { get; set; } 31 | public string Address { get; set; } 32 | public string City { get; set; } 33 | public string Region { get; set; } 34 | public string PostalCode { get; set; } 35 | public string Country { get; set; } 36 | public string HomePhone { get; set; } 37 | public string Extension { get; set; } 38 | public byte[] Photo { get; set; } 39 | public string Notes { get; set; } 40 | public Nullable ReportsTo { get; set; } 41 | public string PhotoPath { get; set; } 42 | 43 | public virtual ICollection Employees1 { get; set; } 44 | public virtual Employee Employee1 { get; set; } 45 | public virtual ICollection Orders { get; set; } 46 | public virtual ICollection Territories { get; set; } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- 1 | using KendoUI.Northwind.Dashboard.Models; 2 | using System.Linq; 3 | using Kendo.Mvc.Extensions; 4 | using System.Web.Mvc; 5 | using Kendo.Mvc.UI; 6 | 7 | namespace KendoUI.Northwind.Dashboard.Controllers 8 | { 9 | public class ProductsController : Controller 10 | { 11 | public ActionResult Products_Read([DataSourceRequest] DataSourceRequest request) 12 | { 13 | return Json(GetProducts().ToDataSourceResult(request), JsonRequestBehavior.AllowGet); 14 | } 15 | 16 | public ActionResult Get_Product(int ID) 17 | { 18 | return Json(GetProducts().Where(product => product.ProductID == ID).SingleOrDefault(), JsonRequestBehavior.AllowGet); 19 | } 20 | 21 | public ActionResult ProductsSalesByMonth(int ProductID) 22 | { 23 | var northwind = new NorthwindEntities(); 24 | var result = from o in northwind.Orders 25 | join od in northwind.OrderDetails on o.OrderID equals od.OrderID 26 | where od.ProductID == ProductID 27 | select new { 28 | Date = o.OrderDate, 29 | Quantity = od.Quantity 30 | }; 31 | return Json(result, JsonRequestBehavior.AllowGet); 32 | } 33 | 34 | private static IQueryable GetProducts() 35 | { 36 | var northwind = new NorthwindEntities(); 37 | var products = northwind.Products.Select(product => new ProductViewModel 38 | { 39 | ProductID = product.ProductID, 40 | ProductName = product.ProductName, 41 | Category = new CategoryViewModel() { 42 | CategoryID = product.Category.CategoryID, 43 | CategoryName = product.Category.CategoryName 44 | }, 45 | UnitsInStock = (short)product.UnitsInStock, 46 | UnitsOnOrder = (short)product.UnitsOnOrder, 47 | ReorderLevel = (short)product.ReorderLevel, 48 | QuantityPerUnit = product.QuantityPerUnit 49 | }); 50 | 51 | return products; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #Telerik Northwind Dashboard# 2 | 3 | **Server-side code available for ASP.NET MVC** 4 | 5 | Telerik Northwind Dashboard is a web app built with Telerik HTML5 [Kendo UI widgets](http://www.telerik.com/kendo-ui) and their server-side wrappers for [ASP.NET MVC](http://www.telerik.com/aspnet-mvc). The app showcases some of the most popular Kendo UI widgets such as Scheduler, Grid, TabStrip, Charts and Map and it’s enabled for touch. It has a simple and responsive UI based on [Twitter Bootstrap](http://getbootstrap.com/) and works on a wide range of devices. 6 | 7 | The sample app is aimed at executives, analysts, or sales representatives. It is helps them establish targets based on insights into historical data as well as track sales and product performance in real time. 8 | 9 | ---------- 10 | 11 | #Featured jQuery & HTML5 UI Components# 12 | 13 | - [Scheduler][1] 14 | - [Grid][2] 15 | - [TabStrip][3] 16 | - [Date Picker][4] 17 | - [ListView][5] 18 | - [DropDownList][6] 19 | - [Tooltip][7] 20 | - [Column Charts][8] 21 | - [Line Charts][9] 22 | - [Donut Charts][10] 23 | - [SparkLines][11] 24 | - [Map][12] 25 | - [Templates][13] 26 | - [Validator][14] 27 | 28 | 29 | [1]: http://www.telerik.com/kendo-ui/scheduler 30 | [2]: http://www.telerik.com/kendo-ui/grid 31 | [3]: http://www.telerik.com/kendo-ui/tabstrip 32 | [4]: http://www.telerik.com/kendo-ui/datetimepickers 33 | [5]: http://www.telerik.com/kendo-ui/listview 34 | [6]: http://www.telerik.com/kendo-ui/dropdownlist 35 | [7]: http://www.telerik.com/kendo-ui/tooltip 36 | [8]: http://demos.telerik.com/kendo-ui/dataviz/bar-charts/index.html 37 | [9]: http://demos.telerik.com/kendo-ui/dataviz/line-charts/index.html 38 | [10]: http://demos.telerik.com/kendo-ui/dataviz/donut-charts/index.htmll 39 | [11]: http://demos.telerik.com/kendo-ui/dataviz/sparklines/index.html 40 | [12]: http://www.telerik.com/kendo-ui/map 41 | [13]: http://demos.telerik.com/kendo-ui/web/templates/index.html 42 | [14]: http://demos.telerik.com/kendo-ui/web/validator/index.html 43 | 44 | To run the application in case you have active license, change the following configuration in the packages.config file: 45 | ``` 46 | 47 | ``` 48 | to this: 49 | ``` 50 | 51 | ``` 52 | -------------------------------------------------------------------------------- /angular/app.js: -------------------------------------------------------------------------------- 1 | var app = angular.module('app', ['ngNewRouter', 'ngResource', 'app.regional', 'app.about', 'app.team', 'app.products', 'kendo.directives']).controller('AppController', ['$router', AppController]); 2 | 3 | app.factory('Customers', ['$resource', function($resource) { 4 | return $resource('./Content/customers.json'); 5 | }]) 6 | .factory('ProductDetails', ['$resource', function($resource) { 7 | return $resource('./Content/product-details.json'); 8 | }]) 9 | .factory('EmployeeList', ['$resource', function($resource) { 10 | return $resource('./Content/employees-list.json'); 11 | }]) 12 | .factory('EmployeeSales', ['$resource', function($resource) { 13 | return $resource('./Content/employee-sales.json'); 14 | }]) 15 | .factory('EmployeeTeamSales', ['$resource', function($resource) { 16 | return $resource('./Content/employee-and-team-sales.json'); 17 | }]) 18 | .factory('EmployeeAverageSales', ['$resource', function($resource) { 19 | return $resource('./Content/employee-average-sales.json'); 20 | }]) 21 | .factory('EmployeeQuarterSales', ['$resource', function($resource) { 22 | return $resource('./Content/employee-quarter-sales.json'); 23 | }]) 24 | .factory('ProductSales', ['$resource', function($resource) { 25 | return $resource('./Content/product-sales.json'); 26 | }]) 27 | .factory('Orders', ['$resource', function($resource) { 28 | return $resource('./Content/orders.json'); 29 | }]) 30 | .factory('OrderInformation', ['$resource', function($resource) { 31 | return $resource('./Content/order-information.json'); 32 | }]) 33 | .factory('CountryCustomers', ['$resource', function($resource) { 34 | return $resource('./Content/country-customers.json'); 35 | }]) 36 | .factory('TopSellingProducts', ['$resource', function($resource) { 37 | return $resource('./Content/top-selling-products.json'); 38 | }]) 39 | .factory('scale', function() { 40 | return chroma.scale(["#ade1fb", "#097dc6"]).domain([1, 100]); 41 | }) 42 | .factory('OrderDetails', ['$resource', function($resource) { 43 | return $resource('./Content/order-details.json'); 44 | }]); 45 | 46 | AppController.$routeConfig = [ 47 | { path: '/', redirectTo: '/regional-sales' }, 48 | { path: '/regional-sales', component: 'regionalSales' }, 49 | { path: '/products-orders', component: 'productsOrders' }, 50 | { path: '/team-efficiency', component: 'teamEfficiency' }, 51 | { path: '/about', component: 'about' } 52 | ]; 53 | 54 | function AppController ($router) { 55 | 56 | } 57 | -------------------------------------------------------------------------------- /.github/workflows/check-repos-updates.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "Stage1 Find Updates" 3 | LATEST_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-ui-core/releases | grep tag_name | head -n 1 | cut -d '"' -f 4) 4 | LATEST_THEMES_RELEASE=$(curl -s https://api.github.com/repos/telerik/kendo-themes/releases | jq -r '[.[] | select(.prerelease == false)][0].name' | tr -d v) 5 | echo "Last release version is $LATEST_RELEASE" 6 | echo "Last Themes release version is $LATEST_THEMES_RELEASE" 7 | 8 | function getCurrentVersion { 9 | for file in `find . -type f -name "*.cshtml"` 10 | do 11 | CURRENT_VERSION=$(grep -hnr "kendo.cdn" $file | head -2 | tail -1 | cut -d '/' -f 4) 12 | if [ ! -z "$CURRENT_VERSION" ] 13 | then 14 | CURRENT_GLOBAL_VERSION=$CURRENT_VERSION 15 | fi 16 | done 17 | } 18 | 19 | function getCurrentThemesVersion { 20 | for file in `find . -type f -name "*.cshtml"` 21 | do 22 | CURRENT_THEMES_VERSION=$(grep -hnr "kendo.cdn" $file | head -1 | cut -d '/' -f 5) 23 | if [ ! -z "$CURRENT_THEMES_VERSION" ] 24 | then 25 | CURRENT_GLOBAL_THEMES_VERSION=$CURRENT_THEMES_VERSION 26 | fi 27 | done 28 | } 29 | 30 | getCurrentVersion $file 31 | getCurrentThemesVersion $file 32 | 33 | echo "Current version is $CURRENT_GLOBAL_VERSION" 34 | echo "Current themes version is $CURRENT_GLOBAL_THEMES_VERSION" 35 | 36 | 37 | for file in `find . -type f -name "*.cshtml"` 38 | do 39 | sed -i "s/$CURRENT_GLOBAL_VERSION/$LATEST_RELEASE/g" $file 40 | sed -i "s/$CURRENT_GLOBAL_THEMES_VERSION/$LATEST_THEMES_RELEASE/g" $file 41 | done 42 | for file in `find . -type f -name "*.html"` 43 | do 44 | sed -i "s/$CURRENT_GLOBAL_VERSION/$LATEST_RELEASE/g" $file 45 | sed -i "s/$CURRENT_GLOBAL_THEMES_VERSION/$LATEST_THEMES_RELEASE/g" $file 46 | done 47 | for file in `find . -type f -name "*.csproj"` 48 | do 49 | sed -i "s/$CURRENT_GLOBAL_VERSION/$LATEST_RELEASE/g" $file 50 | done 51 | for file in `find . -type f -name "*.config"` 52 | do 53 | sed -i "s/$CURRENT_GLOBAL_VERSION/$LATEST_RELEASE/g" $file 54 | done 55 | 56 | echo "Stage2 Commit the change" 57 | reviewers="Dimitar-Goshev" 58 | echo $reviewers 59 | BRANCH_NAME="update-dependencies" 60 | PRs=$(gh pr list | grep "$BRANCH_NAME" || true) 61 | echo "PRs are:" 62 | echo $PRs 63 | echo "Branch is:" 64 | echo $BRANCH_NAME 65 | if [ ! -z $PRs ]; then 66 | echo "Unmerged pr $BRANCH_NAME" 67 | else 68 | git fetch origin 69 | git pull 70 | git checkout -b $BRANCH_NAME 71 | git config user.email "kendo-bot@progress.com" 72 | git config user.name "kendo-bot" 73 | git add . && git commit -m "chore: update dependencies" 74 | git pull 75 | git push -u origin $BRANCH_NAME 76 | gh pr create --base master --head $BRANCH_NAME --reviewer $reviewers \ 77 | --title "Update dependencies $DATE" --body 'Please review and update dependencies' 78 | 79 | git diff 80 | fi 81 | 82 | -------------------------------------------------------------------------------- /angular/Content/Fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by IcoMoon 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /html/Content/Fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by IcoMoon 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Content/Fonts/icomoon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by IcoMoon 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @using KendoUI.Northwind.Dashboard.Models; 2 |
3 |

About

4 |
5 | 6 |
7 |
8 |

Telerik Northwind Dashboard

9 |

Telerik Northwind Dashboard is a web app built with Telerik® UI for ASP.NET MVC - 110+ UI components to help you build rich and responsive web apps for any device twice as fast. The controls are comprised of Telerik award-winning Kendo UI HTML5 and JavaScript widgets and their server-side wrappers for ASP.NET MVC.

10 | 11 |

The sample app showcases some of the most popular Telerik ASP.NET MVC extensions, such as Scheduler, Grid, TabStrip, Charts and Map and is enabled for touch. It has a simple and responsive UI based on Bootstrap and works on a wide range of devices. 12 |

13 | 14 |

The sample app is aimed at executives, analysts, or sales representatives. It helps them establish targets based on insights into historical data as well as track sales and product performance in real time.

15 | Get Source Code for ASP.NET MVC 16 |
17 | 18 |
19 |

Featured Telerik UI for ASP.NET MVC Components

20 |
21 | 30 | 37 | 41 |
42 |
43 |
44 | 45 | 50 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using KendoUI.Northwind.Dashboard.Models; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Mvc; 5 | using Kendo.Mvc.Extensions; 6 | 7 | 8 | namespace KendoUI.Northwind.Dashboard.Controllers 9 | { 10 | public class HomeController : Controller 11 | { 12 | public ActionResult ProductsAndOrders() 13 | { 14 | ViewData["employees"] = GetEmployees(); 15 | ViewData["customers"] = GetCustomers(); 16 | ViewData["products"] = GetProducts(); 17 | ViewData["shippers"] = GetShippers(); 18 | return View(); 19 | } 20 | 21 | public ActionResult TeamEfficiency() 22 | { 23 | return View(); 24 | } 25 | 26 | public ActionResult RegionalSalesStatus() 27 | { 28 | return View(); 29 | } 30 | 31 | public ActionResult About() 32 | { 33 | return View(); 34 | } 35 | 36 | public ActionResult Products_Read(string text) 37 | { 38 | var northwind = new NorthwindEntities(); 39 | 40 | var products = northwind.Products.Select(product => new ProductViewModel 41 | { 42 | CategoryID = product.CategoryID, 43 | ProductID = product.ProductID, 44 | ProductName = product.ProductName, 45 | UnitPrice = product.UnitPrice ?? 0, 46 | UnitsInStock = product.UnitsInStock ?? 0, 47 | UnitsOnOrder = product.UnitsOnOrder ?? 0, 48 | Discontinued = product.Discontinued 49 | }); 50 | 51 | if (!string.IsNullOrEmpty(text)) 52 | { 53 | products = products.Where(p => p.ProductName.Contains(text)); 54 | } 55 | 56 | return Json(products, JsonRequestBehavior.AllowGet); 57 | } 58 | 59 | public static IEnumerable GetEmployees() 60 | { 61 | var employees = new NorthwindEntities().Employees.Select(e => new EmployeeViewModel 62 | { 63 | EmployeeID = e.EmployeeID, 64 | EmployeeName = e.FirstName + " " + e.LastName 65 | }).OrderBy(e => e.EmployeeName); 66 | 67 | return employees; 68 | } 69 | 70 | public IEnumerable GetProducts() 71 | { 72 | var products = new NorthwindEntities().Products.Select(e => new ProductViewModel 73 | { 74 | ProductID = e.ProductID, 75 | ProductName = e.ProductName 76 | }).OrderBy(e => e.ProductName); 77 | 78 | return products; 79 | } 80 | 81 | 82 | public static IQueryable GetCustomers() 83 | { 84 | var customers = new NorthwindEntities().Customers.Select(e => new CustomerViewModel 85 | { 86 | CustomerID = e.CustomerID, 87 | CompanyName = e.CompanyName 88 | }).OrderBy(e => e.CompanyName); 89 | 90 | return customers; 91 | } 92 | 93 | 94 | public IQueryable GetShippers() 95 | { 96 | var shippers = new NorthwindEntities().Shippers.Select(e => new ShipperViewModel 97 | { 98 | ShipperID = e.ShipperID, 99 | CompanyName = e.CompanyName 100 | }).OrderBy(e => e.CompanyName); 101 | 102 | return shippers; 103 | } 104 | } 105 | } 106 | -------------------------------------------------------------------------------- /angular/components/about/about.html: -------------------------------------------------------------------------------- 1 |
2 |

About

3 |
4 | 5 |
6 |
7 |

Telerik Northwind Dashboard

8 |

Telerik Northwind Dashboard is a web app built on top of AngularJS with Progress award-winning 9 | Kendo UI HTML5 and JavaScript widgets. Kendo UI® 10 | speeds up your AngularJS development with 70+ ready-to-use UI widgets for every need - from the must-have for every app Grids, Dropdowns and Menus to the advanced line-of-business UI, such as Charts, Gantt, Diagram, Scheduler, PivotGrid and Maps.

11 | 12 | 13 |

The sample app showcases some of the most popular Kendo UI widgets, such as Scheduler, Grid, TabStrip, Charts and Map in a real world scenario. It has a simple and responsive UI based on 14 | Bootstrap and works on a wide range of devices.

15 | 16 |

The sample app is aimed at executives, analysts, or sales representatives. It helps them establish targets based on insights into historical data as well as track sales and product performance in real time.

17 | Get Source Code for AngularJS 18 |
19 | 20 |
21 |

Featured Kendo UI Components

22 |
23 | 46 | 63 | 71 |
72 |
73 |
74 | 75 | -------------------------------------------------------------------------------- /aspnet-mvc/kendoui-northwind-dashboard/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ASP.NET MVC Dashboard Sample App Demo | Telerik UI for ASP.NET MVC 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | 21 | 22 |
23 |
24 | 45 |
46 | @RenderBody() 47 |
48 |
49 |
50 | 51 | 58 | 59 | 60 | -------------------------------------------------------------------------------- /html/Content/employees-list.json: -------------------------------------------------------------------------------- 1 | [{"EmployeeID":2,"FirstName":"Andrew","EmployeeName":"Andrew Fuller","LastName":"Fuller","Title":"Vice President, Sales","Country":null,"City":null,"Address":null,"HomePhone":"(206) 555-9482","Notes":"Andrew received his BTS commercial in 1974 and a Ph.D. in international marketing from the University of Dallas in 1981. He is fluent in French and Italian and reads German. He joined the company as a sales representative, was promoted to sales manager in January 1992 and to vice president of sales in March 1993. Andrew is a member of the Sales Management Roundtable, the Seattle Chamber of Commerce, and the Pacific Rim Importers Association."},{"EmployeeID":9,"FirstName":"Anne","EmployeeName":"Anne Dodsworth","LastName":"Dodsworth","Title":"Sales Representative","Country":null,"City":null,"Address":null,"HomePhone":"(71) 555-4444","Notes":"Anne has a BA degree in English from St. Lawrence College. She is fluent in French and German."},{"EmployeeID":3,"FirstName":"Janet","EmployeeName":"Janet Leverling","LastName":"Leverling","Title":"Sales Representative","Country":null,"City":null,"Address":null,"HomePhone":"(206) 555-3412","Notes":"Janet has a BS degree in chemistry from Boston College (1984). She has also completed a certificate program in food retailing management. Janet was hired as a sales associate in 1991 and promoted to sales representative in February 1992."},{"EmployeeID":8,"FirstName":"Laura","EmployeeName":"Laura Callahan","LastName":"Callahan","Title":"Inside Sales Coordinator","Country":null,"City":null,"Address":null,"HomePhone":"(206) 555-1189","Notes":"Laura received a BA in psychology from the University of Washington. She has also completed a course in business French. She reads and writes French."},{"EmployeeID":4,"FirstName":"Margaret","EmployeeName":"Margaret Peacock","LastName":"Peacock","Title":"Sales Representative","Country":null,"City":null,"Address":null,"HomePhone":"(206) 555-8122","Notes":"Margaret holds a BA in English literature from Concordia College (1958) and an MA from the American Institute of Culinary Arts (1966). She was assigned to the London office temporarily from July through November 1992."},{"EmployeeID":6,"FirstName":"Michael","EmployeeName":"Michael Suyama","LastName":"Suyama","Title":"Sales Representative","Country":null,"City":null,"Address":null,"HomePhone":"(71) 555-7773","Notes":"Michael is a graduate of Sussex University (MA, economics, 1983) and the University of California at Los Angeles (MBA, marketing, 1986). He has also taken the courses \"Multi-Cultural Selling\" and \"Time Management for the Sales Professional.\" He is fluent in Japanese and can read and write French, Portuguese, and Spanish."},{"EmployeeID":1,"FirstName":"Nancy","EmployeeName":"Nancy Davolio","LastName":"Davolio","Title":"Sales Representative","Country":null,"City":null,"Address":null,"HomePhone":"(206) 555-9857","Notes":"Education includes a BA in psychology from Colorado State University in 1970. She also completed \"The Art of the Cold Call.\" Nancy is a member of Toastmasters International."},{"EmployeeID":7,"FirstName":"Robert","EmployeeName":"Robert King","LastName":"King","Title":"Sales Representative","Country":null,"City":null,"Address":null,"HomePhone":"(71) 555-5598","Notes":"Robert King served in the Peace Corps and traveled extensively before completing his degree in English at the University of Michigan in 1992, the year he joined the company. After completing a course entitled \"Selling in Europe,\" he was transferred to the London office in March 1993."},{"EmployeeID":5,"FirstName":"Steven","EmployeeName":"Steven Buchanan","LastName":"Buchanan","Title":"Sales Manager","Country":null,"City":null,"Address":null,"HomePhone":"(71) 555-4848","Notes":"Steven Buchanan graduated from St. Andrews University, Scotland, with a BSC degree in 1976. Upon joining the company as a sales representative in 1992, he spent 6 months in an orientation program at the Seattle office and then returned to his permanent post in London. He was promoted to sales manager in March 1993. Mr. Buchanan has completed the courses \"Successful Telemarketing\" and \"International Sales Management.\" He is fluent in French."}] --------------------------------------------------------------------------------