Update README.md

This commit is contained in:
dlebee 2018-03-07 20:00:00 -06:00 committed by GitHub
parent 07eed00f00
commit 55afafa5ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,8 +122,9 @@ Assert.AreEqual(first?.FirstName, "David");
```csharp
[HttpGet][Route("FindClients")]
public IHttpActionResult FindClients(string filterField = null, string filterValue = null, string sortProperty = "Id", int? page = null, int pageSize = 50)
{
public IHttpActionResult FindClients(string filterField = null, string filterValue = null,
string sortProperty = "Id", int? page = null, int pageSize = 50)
{
var ctx = new MyDbContext();
var query = ctx.Clients.AsQueryable();
@ -153,5 +154,5 @@ Assert.AreEqual(first?.FirstName, "David");
pages = pages,
data = clients
});
}
}
```