public CBApi(string key,string cobrandCode, string siteid)
 {
     _TargetSite = new CareerBuilderCom();
     DevKey = key;
     CobrandCode = cobrandCode;
     SiteID = siteid;
 }
 public CBApi(string key)
 {
     _TargetSite = new CareerBuilderCom();
     DevKey = key;
 }
        public string SiteID { get; set; }         //Otherwise leave these two parameters alone

        public CBApi()
        {
            _TargetSite = new CareerBuilderCom();
            DevKey = Properties.Settings.Default.DevKey;
        }