17 lines
544 B
C#
17 lines
544 B
C#
using Customers.Api.Contracts.Responses;
|
|
using Customers.Api.Endpoints;
|
|
using FastEndpoints;
|
|
|
|
namespace Customers.Api.Summaries;
|
|
|
|
public class CreateCustomerSummary : Summary<CreateCustomerEndpoint>
|
|
{
|
|
public CreateCustomerSummary()
|
|
{
|
|
Summary = "Creates a new customer in the system";
|
|
Description = "Creates a new customer in the system";
|
|
Response<CustomerResponse>(201, "Customer was successfully created");
|
|
Response<ValidationFailureResponse>(400, "The request did not pass validation checks");
|
|
}
|
|
}
|