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