Skip to content

Commit

Permalink
Update CustomersService.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mythz committed Sep 11, 2013
1 parent a3db59c commit f74ca24
Showing 1 changed file with 13 additions and 13 deletions.
@@ -1,15 +1,15 @@
namespace ServiceStack.Northwind.ServiceInterface
{
using ServiceStack.Northwind.ServiceModel.Operations;
using ServiceStack.Northwind.ServiceModel.Types;
using ServiceStack.OrmLite;
using ServiceStack.ServiceInterface;
using ServiceStack.Northwind.ServiceModel.Operations;
using ServiceStack.Northwind.ServiceModel.Types;
using ServiceStack.OrmLite;
using ServiceStack.ServiceInterface;

public class CustomersService : Service
{
public CustomersResponse Get(Customers request)
{
return new CustomersResponse { Customers = Db.Select<Customer>() };
}
}
namespace ServiceStack.Northwind.ServiceInterface
{
public class CustomersService : Service
{
public CustomersResponse Get(Customers request)
{
return new CustomersResponse { Customers = Db.Select<Customer>() };
}
}
}

0 comments on commit f74ca24

Please sign in to comment.