File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
src/ServiceStack.Northwind/ServiceStack.Northwind.ServiceInterface Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- namespace ServiceStack.Northwind.ServiceInterface
2- {
3- using ServiceStack.Northwind.ServiceModel.Operations;
4- using ServiceStack.Northwind.ServiceModel.Types;
5- using ServiceStack.OrmLite;
6- using ServiceStack.ServiceInterface;
1+ using ServiceStack.Northwind.ServiceModel.Operations;
2+ using ServiceStack.Northwind.ServiceModel.Types;
3+ using ServiceStack.OrmLite;
4+ using ServiceStack.ServiceInterface;
75
8- public class CustomersService : Service
9- {
10- public CustomersResponse Get(Customers request)
11- {
12- return new CustomersResponse { Customers = Db.Select<Customer>() };
13- }
14- }
6+ namespace ServiceStack.Northwind.ServiceInterface
7+ {
8+ public class CustomersService : Service
9+ {
10+ public CustomersResponse Get(Customers request)
11+ {
12+ return new CustomersResponse { Customers = Db.Select<Customer>() };
13+ }
14+ }
1515}
You can’t perform that action at this time.
0 commit comments