New Angular based web version #1

Closed
thomas.nuyken wants to merge 150 commits from main into ddd
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 5da1e2fd75 - Show all commits

View File

@@ -34,7 +34,7 @@ public static class CreateCar
}
}
public static async Task<IResult> Endpoint(
private static async Task<IResult> Endpoint(
Request request,
IEnumerable<IValidator<Request>> validators,
ApplicationDbContext dbContext,

View File

@@ -15,7 +15,7 @@ public static class DeleteCar
.Produces(404);
}
public static async Task<IResult> Endpoint(
private static async Task<IResult> Endpoint(
Guid id,
ApplicationDbContext dbContext,
ILoggerFactory loggerFactory,

View File

@@ -34,7 +34,7 @@ public static class UpdateCar
}
}
public static async Task<IResult> Endpoint(
private static async Task<IResult> Endpoint(
Guid id,
Request request,
IEnumerable<IValidator<Request>> validators,