AnujBank.Account.Account C# (CSharp) Метод

Account() публичный Метод

public Account ( AccountId id, ClientId clientId ) : System
id AccountId
clientId ClientId
Результат System
        public Account(AccountId id, ClientId clientId)
        {
            if (clientId == null)
                throw new ArgumentException("You must provide client");
            AccountNo = id;
            ClientId = clientId;
        }