source: extensions/PiwigoLib/PiwigoUpload/Helper/SelectedListHelper.cs @ 12256

Last change on this file since 12256 was 12256, checked in by bayral, 13 years ago

adding PiwigoUpload project for a simple tools for upload your photo recursively

File size: 595 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using Com.Piwigo.Uploader.DTO;
6using Com.Piwigo.Lib.DTO;
7
8namespace Com.Piwigo.Uploader.Helper
9{
10    class SelectedListHelper
11    {
12        public SelectedPwgCategoryList BuildSelectedList(List<PwgCategory> lstItems)
13        {
14            SelectedPwgCategoryList ret = new SelectedPwgCategoryList();
15            foreach (PwgCategory item in lstItems )
16            {
17                ret.Add(new SelectedListItem<PwgCategory>());
18            }
19            return ret;
20        }
21    }
22}
Note: See TracBrowser for help on using the repository browser.