-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e8b91d
commit fb55f4f
Showing
9 changed files
with
45 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,13 +9,13 @@ namespace Unosquare.Tubular.EmbedioSample; | |
/// </summary> | ||
public class PeopleController : WebApiController | ||
{ | ||
private static readonly List<Person> People = new() | ||
{ | ||
private static readonly List<Person> People = | ||
[ | ||
new() { Key = 1, Name = "Mario Di Vece", Age = 31, EmailAddress = "[email protected]" }, | ||
new() { Key = 2, Name = "Geovanni Perez", Age = 31, EmailAddress = "[email protected]" }, | ||
new() { Key = 3, Name = "Luis Gonzalez", Age = 29, EmailAddress = "[email protected]" }, | ||
new() { Key = 4, Name = "Carlos Solorzano", Age = 22, EmailAddress = "[email protected]" } | ||
}; | ||
]; | ||
|
||
[Route(HttpVerbs.Post, "/people")] | ||
public GridDataResponse GetPeople([JsonGridDataRequest] GridDataRequest model) => | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters