File tree 1 file changed +13
-13
lines changed
src/ServiceStack.Northwind/ServiceStack.Northwind.ServiceInterface
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 ;
7
5
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
+ }
15
15
}
You can’t perform that action at this time.
0 commit comments