Created
December 24, 2018 01:13
-
-
Save Myeongjoon/0497a2ec90f2e710db752a737bcb6f3b to your computer and use it in GitHub Desktop.
ExampleValueObject
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AdAccount : ValueObject | |
{ | |
private AdAccount() | |
{ | |
} | |
public static AdAccount For(string accountString) | |
{ | |
var account = new AdAccount(); | |
try | |
{ | |
var index = accountString.IndexOf("\\", StringComparison.Ordinal); | |
account.Domain = accountString.Substring(0, index); | |
account.Name = accountString.Substring(index + 1); | |
} | |
catch (Exception ex) | |
{ | |
throw new AdAccountInvalidException(accountString, ex); | |
} | |
return account; | |
} | |
public string Domain { get; private set; } | |
public string Name { get; private set; } | |
public static implicit operator string(AdAccount account) | |
{ | |
return account.ToString(); | |
} | |
public static explicit operator AdAccount(string accountString) | |
{ | |
return For(accountString); | |
} | |
public override string ToString() | |
{ | |
return $"{Domain}\\{Name}"; | |
} | |
protected override IEnumerable<object> GetAtomicValues() | |
{ | |
yield return Domain; | |
yield return Name; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/JasonGT/NorthwindTraders/blob/eaa61fd9d66945286f9b519e67211b00d223f37f/Northwind.Domain/ValueObjects/AdAccount.cs