Fix exapmples

This commit is contained in:
2023-12-18 12:10:34 +01:00
parent e390644d35
commit 3d034f3d4d
18 changed files with 51 additions and 56 deletions

View File

@@ -24,7 +24,7 @@ public class ExampleController : FluentApiControllerBase
#region Constructors
public ExampleController(IExampleProvider provider,
IValidator validator)
IValidator validator)
: base(validator)
{
_provider = provider;
@@ -44,7 +44,7 @@ public class ExampleController : FluentApiControllerBase
public IActionResult Get(int id)
{
return Api().Use(id)
.Get(_provider.GetById_v1_1);
.Get(_provider.GetById_v1_1);
}
#endregion