Api/Netina.Domain/CommandQueries/Commands/AddressCommands.cs

28 lines
725 B
C#
Raw Permalink Normal View History

2024-04-16 20:01:34 +03:30
namespace Netina.Domain.CommandQueries.Commands;
2024-02-12 22:01:15 +03:30
public sealed record CreateAddressCommand(
string Address,
string Province,
string City,
string Plaque,
string BuildingUnit,
string ReceiverFullName,
string ReceiverPhoneNumber,
string PostalCode,
float LocationLat,
float LocationLong) : IRequest<bool>;
public sealed record UpdateAddressCommand(
Guid Id,
string Address,
string Province,
string City,
string Plaque,
string BuildingUnit,
string ReceiverFullName,
string ReceiverPhoneNumber,
string PostalCode,
float LocationLat,
float LocationLong) : IRequest<bool>;
public sealed record DeleteAddressCommand(Guid Id):IRequest<bool>;