Exemplo n.º 1
0
        public Company()
        {
            CompanyID = Name = BankName = BankBIC = AccountNumber = BillerName = Email = Phone = string.Empty;

            Bills = new List<Bill>();
            Address = new Address();
        }
Exemplo n.º 2
0
        public Client()
        {
            Name = string.Empty;

            Bills = new List<Bill>();
            Address = new Address();
        }