MVCLogin/VCart.Domain/ValueObjects/Id.cs
Ricardo Carneiro b21056f636 first commit
2024-08-10 22:10:03 -03:00

23 lines
490 B
C#

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<object> GetEqualityComponents()
{
throw new NotImplementedException();
}
}
}