Example #1
0
 public POService()
 {
     _manualList = new POList();
     _manualCol  = new HashSet <POWithStatus>();
     LoadPOList();
     InternalData = GetPOList();
     SetGetDataAction(() => GetPOList());
 }
Example #2
0
 private void LoadPOList()
 {
     _manualList = new POList();
     if (File.Exists(FILE_NAME))
     {
         using (var stream = File.OpenRead(FILE_NAME))
         {
             var serializer = new XmlSerializer(typeof(POList));
             _manualList = serializer.Deserialize(stream) as POList;
             _manualList.Each(p => _manualCol.Add(new POWithStatus(p.Number)));
         }
     }
 }
Example #3
0
        private void InitializeStartUpComboList()
        {
            this.SearchType = new List <string>();
            this.SearchType.Add("Add hoc");
            this.SearchType.Add("By Class, Section and Roll");
            this.SearchType.Add("Bulk");

            this.VillList = new List <string>();
            VillList.Add("Bakharpur");
            VillList.Add("Bamongram");
            VillList.Add("Chamagram");
            VillList.Add("Chaspara");
            VillList.Add("Goyeshbari");
            VillList.Add("Harugram");
            VillList.Add("Jalalpur");
            VillList.Add("Mosimpur");
            VillList.Add("Nazirpur");
            VillList.Add("Paharpur");
            VillList.Add("Sujapur");

            this.POList = new List <string>();
            POList.Add("Bakharpur");
            POList.Add("Bamongram");
            POList.Add("Chaspara");
            POList.Add("Chhoto Sujapur");
            POList.Add("Fatehkhani");
            POList.Add("Gayeshbari");
            POList.Add("Jalalpur");
            POList.Add("Mosimpur");
            POList.Add("Sujapur");

            this.PSList = new List <string>();
            PSList.Add("Kaliachak");

            this.DistList = new List <string>();
            DistList.Add("Malda");

            this.PinList = new List <string>();
            PinList.Add("732206");

            this.Gender = new List <string>();
            Gender.Add("Boy");
            Gender.Add("Girl");

            this.SchoolClass = new List <string>();
            SchoolClass.Add("V");
            SchoolClass.Add("VI");
            SchoolClass.Add("VII");
            SchoolClass.Add("VIII");
            SchoolClass.Add("IX");
            SchoolClass.Add("X");
            SchoolClass.Add("XI");
            SchoolClass.Add("XII");

            this.SchoolSection = new List <string>();
            SchoolSection.Add("A");
            SchoolSection.Add("B");
            SchoolSection.Add("C");
            SchoolSection.Add("D");
            SchoolSection.Add("E");
        }