AnujBank.Account.Account C# (CSharp) Méthode

Account() public méthode

public Account ( AccountId id, ClientId clientId ) : System
id AccountId
clientId ClientId
Résultat System
        public Account(AccountId id, ClientId clientId)
        {
            if (clientId == null)
                throw new ArgumentException("You must provide client");
            AccountNo = id;
            ClientId = clientId;
        }