コード例 #1
0
ファイル: Person.cs プロジェクト: overxianz/fbm
        public BusinessPerson(Person p)
        {
            this.FirstName = p.FirstName;
            this.LastName = p.LastName;
            this.NationalId = p.NationalId;

            SetupDirectives();
        }
コード例 #2
0
ファイル: BankClientTest.cs プロジェクト: overxianz/fbm
 public void TestInit()
 {
     p1 = new Person { NationalId = "801-89-7744", FirstName = "Roger", LastName = "Green" };
 }