mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-15 05:25:36 +08:00
15 lines
390 B
C#
15 lines
390 B
C#
using AutoBogus;
|
|
using BuildingBlocks.IdsGenerator;
|
|
using Flight.Aircrafts.Features.CreateAircraft;
|
|
using Flight.Aircrafts.Features.CreateAircraft.Commands.V1;
|
|
|
|
namespace Integration.Test.Fakes;
|
|
|
|
public class FakeCreateAircraftCommand : AutoFaker<CreateAircraftCommand>
|
|
{
|
|
public FakeCreateAircraftCommand()
|
|
{
|
|
RuleFor(r => r.Id, _ => SnowFlakIdGenerator.NewId());
|
|
}
|
|
}
|