Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 181 Bytes

ddd-value-object.md

File metadata and controls

12 lines (10 loc) · 181 Bytes
public static implicit operator int(RestaurantId id)
{
    return id.Id;
}

public static explicit operator RestaurantId(int id)
{
    return new RestaurantId(id);
}