public static List <Tag> GetTags() { List <Tag> tagsList = new List <Tag>(); try { DBServiceClient dws = new DBServiceClient(); tagsList = dws.GetTags(); dws.Close(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } return(tagsList); }