Exemple #1
0
 protected bool Equals(StringId other)
 {
     return string.Equals(value, other.value);
 }
Exemple #2
0
 public static StringId CreateStringId(string value)
 {
     var ret = new StringId(value);
       return ret;
 }