Exemplo n.º 1
0
 private void SetAvailableTags()
 {
     Model.TagsDataTable tbl = new Model.TagsDataTable();
     foreach (Model.TagsRow row in CurrentController.GetTagsRows())
     {
         tbl.ImportRow(row);
     }
     AvailableTags = tbl.AsEnumerable();
 }