Skip to content

Commit f74ca24

Browse files
committed
Update CustomersService.cs
1 parent a3db59c commit f74ca24

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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
}

0 commit comments

Comments
 (0)