Example #1
0
        public int insertShippingAddress(CustomerBiz oCustomerBiz)
        {
            CDL.CoreDataLayer objCoreDataLayer = new CDL.CoreDataLayer();

            int iCustomerAddID = 0;
            try
            {

                iCustomerAddID = objCoreDataLayer.ExecuteIdentity("pr_InsShippingAdd", new object[] { oCustomerBiz.CustomerId,oCustomerBiz.ShippingName,oCustomerBiz.ShippingAddress,oCustomerBiz.ShippingPincode,oCustomerBiz.ShippingCity,oCustomerBiz.ShippingState,oCustomerBiz.ShippingMobile,oCustomerBiz.ShippingSaveName});

             }
            catch (Exception ex)
            {
                throw ex;
            }

            return iCustomerAddID;
        }