MVCPostall/VCart.Domain/ValueObjects/Id.cs
2025-01-26 22:44:31 +00:00

23 lines
491 B
C#

using BaseDomain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Blinks.Domain.ValueObjects
{
public class Id : AValueObject
{
public override bool GetValidationExpression()
{
throw new NotImplementedException();
}
protected override IEnumerable<object> GetEqualityComponents()
{
throw new NotImplementedException();
}
}
}