public Wrapper <ApiFoo> GetApiObject(int id) { var url = _baseUrl + "controller/" + id; // add in the rest of the url var result = _services.Get <ApiFoo>(url); return(result); }
protected Wrapper <T> Get <T>(string url) where T : new() { var data = _services.Get <T>(url + _key); return(data); }