├── .gitignore ├── README.md └── src └── Northwind ├── Northwind.ServiceInterface ├── CachedServices.cs ├── CustomerDetailsService.cs ├── CustomersService.cs ├── Northwind.ServiceInterface.csproj ├── OrdersService.cs ├── Properties │ └── AssemblyInfo.cs └── VCardFormat.cs ├── Northwind.ServiceModel ├── AutoQuery.cs ├── CachedOperations.cs ├── CustomerDetails.cs ├── Customers.cs ├── Northwind.ServiceModel.csproj ├── Orders.cs ├── Properties │ └── AssemblyInfo.cs └── Types │ ├── Category.cs │ ├── Customer.cs │ ├── CustomerCustomerDemo.cs │ ├── CustomerDemographic.cs │ ├── CustomerOrders.cs │ ├── Employee.cs │ ├── EmployeeTerritory.cs │ ├── Order.cs │ ├── OrderDetail.cs │ ├── Product.cs │ ├── Region.cs │ ├── Shipper.cs │ ├── Supplier.cs │ └── Territory.cs ├── Northwind.sln └── Northwind ├── Global.asax ├── Global.asax.cs ├── Northwind.csproj ├── Northwind.sqlite ├── Properties ├── AssemblyInfo.cs └── PublishProfiles │ └── WebDeploy.pubxml ├── Web.config ├── default.htm ├── img ├── bg-footer.png ├── database-18x18.jpg ├── database-icon.jpg ├── logo-txt-small.png ├── vcard-ALFKI-200.png ├── vcard-ALFKI-300.png └── vcard-ALFKI.png └── vcard-format.htm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/README.md -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/CachedServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/CachedServices.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/CustomerDetailsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/CustomerDetailsService.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/CustomersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/CustomersService.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/Northwind.ServiceInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/Northwind.ServiceInterface.csproj -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/OrdersService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/OrdersService.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceInterface/VCardFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceInterface/VCardFormat.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/AutoQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/AutoQuery.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/CachedOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/CachedOperations.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/CustomerDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/CustomerDetails.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Customers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Customers.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Northwind.ServiceModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Northwind.ServiceModel.csproj -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Orders.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Category.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Customer.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/CustomerCustomerDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/CustomerCustomerDemo.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/CustomerDemographic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/CustomerDemographic.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/CustomerOrders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/CustomerOrders.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Employee.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/EmployeeTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/EmployeeTerritory.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Order.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/OrderDetail.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Product.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Region.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Shipper.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Supplier.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.ServiceModel/Types/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.ServiceModel/Types/Territory.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind.sln -------------------------------------------------------------------------------- /src/Northwind/Northwind/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Global.asax -------------------------------------------------------------------------------- /src/Northwind/Northwind/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Global.asax.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind/Northwind.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Northwind.csproj -------------------------------------------------------------------------------- /src/Northwind/Northwind/Northwind.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Northwind.sqlite -------------------------------------------------------------------------------- /src/Northwind/Northwind/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Northwind/Northwind/Properties/PublishProfiles/WebDeploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Properties/PublishProfiles/WebDeploy.pubxml -------------------------------------------------------------------------------- /src/Northwind/Northwind/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/Web.config -------------------------------------------------------------------------------- /src/Northwind/Northwind/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/default.htm -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/bg-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/bg-footer.png -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/database-18x18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/database-18x18.jpg -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/database-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/database-icon.jpg -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/logo-txt-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/logo-txt-small.png -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/vcard-ALFKI-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/vcard-ALFKI-200.png -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/vcard-ALFKI-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/vcard-ALFKI-300.png -------------------------------------------------------------------------------- /src/Northwind/Northwind/img/vcard-ALFKI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/img/vcard-ALFKI.png -------------------------------------------------------------------------------- /src/Northwind/Northwind/vcard-format.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/Northwind/HEAD/src/Northwind/Northwind/vcard-format.htm --------------------------------------------------------------------------------