public string GetSystemDetails() { IBrand iBrand = _IComputerFactory.Brand(); IProcessor iProcessor = _IComputerFactory.Procesor(); ISystemType iSystemType = _IComputerFactory.SystemType(); string returnValue = string.Format("{0} {1} {2}", iBrand.GetBrand(), iProcessor.GetProcessor(), iSystemType.GetSystemType()); return(returnValue); }