2022-10-20 13:51:07 +03:30

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());
}
}