public static void SaveList(List <HCMIS.Desktop.DirectoryServices.Product> list)
        {
            BLL.Product bv = new BLL.Product();
            foreach (HCMIS.Desktop.DirectoryServices.Product v in list)
            {
                // try to load by primary key
                bv.LoadByPrimaryKey(v.ID.Value);

                // if the entry doesn't exist, create it
                if (bv.RowCount == 0)
                {
                    bv.AddNew();
                }
                // populate the contents of v on the to the database list
                if (v.ID.HasValue)
                {
                    bv.ID = v.ID.Value;
                }
                if (v.Name != "" && v.Name != null)
                {
                    bv.IIN = v.Name;
                }
                if (v.TypeID.HasValue)
                {
                    bv.TypeID = v.TypeID.Value;
                }

                bv.Save();
            }
        }
        public static void SaveList(List<HCMIS.Desktop.DirectoryServices.Product> list)
        {
            BLL.Product bv = new BLL.Product();
            foreach (HCMIS.Desktop.DirectoryServices.Product v in list)
            {
                // try to load by primary key
                bv.LoadByPrimaryKey(v.ID.Value);

                // if the entry doesn't exist, create it
                if (bv.RowCount == 0)
                {
                    bv.AddNew();
                }
                // populate the contents of v on the to the database list
              if( v.ID.HasValue )
                   bv.ID = v.ID.Value;
              if( v.Name != "" && v.Name != null )
                   bv.IIN = v.Name;
              if( v.TypeID.HasValue )
                   bv.TypeID = v.TypeID.Value;

                bv.Save();
            }
        }