コード例 #1
0
 public void ChangeBusinessNameTo_TrueCoders(Business biz)
 {
     biz.Name = "TrueCoders";
 }
コード例 #2
0
        public void ChangeBusinessNameTo_TrueCoders(Business biz)
        {
            //throw new NotImplementedException();

            biz.Name = "TrueCoders";
        }
コード例 #3
0
ファイル: Business.cs プロジェクト: ciss0078/ChallengeSets
 public void SetParentCompany(Business value)
 {
     ParentCompany = value;
 }
コード例 #4
0
        public void ChangeBusinessNameTo_TrueCoders(Business biz)
        {
            Business business = new Business();

            biz.Name = "TrueCoders";
        }
コード例 #5
0
 public string GetNameOfHighestParentCompany(Business business)
 {
     // If there is Company A, whose parent is Company B, whose parent is Company C, then given Company A return Company C
     throw new NotImplementedException();
 }