mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-30 18:15:46 +08:00
15 lines
280 B
C#
15 lines
280 B
C#
using AutoBogus;
|
|
|
|
namespace Integration.Test.Fakes;
|
|
|
|
using global::Passenger;
|
|
using MassTransit;
|
|
|
|
public class FakePassengerResponse : AutoFaker<PassengerResponse>
|
|
{
|
|
public FakePassengerResponse()
|
|
{
|
|
RuleFor(r => r.Id, _ => NewId.NextGuid().ToString());
|
|
}
|
|
}
|