11 lines
275 B
C#
11 lines
275 B
C#
namespace GerstITS.Examples.Api.Endpoints;
|
|
|
|
internal static partial class Endpoints
|
|
{
|
|
internal static RouteGroupBuilder MapEndpoints(this IEndpointRouteBuilder root)
|
|
{
|
|
return root.MapCustomerEndpoints()
|
|
.MapCustomerNoteEndpoints();
|
|
}
|
|
}
|