private void PopulateCatTree(String Type)
 {
     if (Type == "Drug")
     {
         Category cat = new Category();
         treeCategory.DataSource = cat.GetCategoryTree();
     }
     else
     {
         SupplyCategory subCat = new SupplyCategory();
         treeCategory.DataSource = subCat.GetAllSupplyCategories();
     }
 }
 /// <summary>
 /// Populates the CatTree
 /// </summary>
 private void PopulateCatTree()
 {
     SupplyCategory suppCategory = new SupplyCategory();
     treeCategory.DataSource = suppCategory.GetAllSupplyCategories();
 }