Esempio n. 1
0
 public void ChangeBusinessNameTo_TrueCoders(Business biz)
 {
     biz.Name = "TrueCoders";
 }
Esempio n. 2
0
        public void ChangeBusinessNameTo_TrueCoders(Business biz)
        {
            //throw new NotImplementedException();

            biz.Name = "TrueCoders";
        }
Esempio n. 3
0
 public void SetParentCompany(Business value)
 {
     ParentCompany = value;
 }
        public void ChangeBusinessNameTo_TrueCoders(Business biz)
        {
            Business business = new Business();

            biz.Name = "TrueCoders";
        }
 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();
 }