コード例 #1
0
 public Contact(string name, Company company)
 {
     this.Name = name;
     this.Company = company;
 }
コード例 #2
0
        public void SetUp()
        {
            Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
            Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-US");

            Company company = new Company("Star Wars", 120242124.52);
            Contact owner = new Contact("Luke Skywalker", company);
            this.ticket = new Ticket("123456", owner);
        }