public long InsertACProduct(BOACProduct boItem)
        {
            try
            {
                Hashtable ht = new Hashtable();

                ht.Add("ProductCode", boItem.ProductCode1);
                ht.Add("ACode", boItem.ACode1);
                ht.Add("IsActive", boItem.IsActive1);
                ht.Add("CreatedBy", boItem.CreatedBy1);
                ht.Add("CreatedDate", boItem.CreatedDate1);
                ht.Add("UpdatedBy", boItem.UpdatedBy1);
                ht.Add("UpdatedDate", boItem.UpdatedDate1);

                return(Convert.ToInt64(idbutility.InsertData(ht, "spInsertACProduct")));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
예제 #2
0
        public static long InsertACProduct(BOACProduct boItem)
        {
            DAACProduct objDA = new DAACProduct();

            return(Convert.ToInt64(objDA.InsertACProduct(boItem)));
        }