mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-26 23:57:35 +08:00
15 lines
305 B
C#
15 lines
305 B
C#
using AutoBogus;
|
|
|
|
namespace Integration.Test.Fakes;
|
|
|
|
using global::Flight.Airports.Features.CreatingAirport.V1;
|
|
using MassTransit;
|
|
|
|
public class FakeCreateAirportCommand : AutoFaker<CreateAirport>
|
|
{
|
|
public FakeCreateAirportCommand()
|
|
{
|
|
RuleFor(r => r.Id, _ => NewId.NextGuid());
|
|
}
|
|
}
|