public virtual void AddTechnologyUnitsLink(Technology technology) { var pathFragment = string.Format("{0}/{1}/units", PathFragmentBase, technology.TechnologyId); var link = _commonLinkService.GetLink(pathFragment, "technologyUnits", HttpMethod.Get); technology.AddLink(link); }
public virtual void AddAllTechnologiesLink(Technology technology) { var link = _technologyLinkService.GetAllTechnologiesLink(); technology.AddLink(link); }