/// <summary>
        /// is used to save Product container
        /// </summary>
        /// <param name="warehouseId">Warehouse where we create container</param>
        /// <param name="locatorId">Locator - in which locator we place container</param>
        /// <param name="value">Search key of the container</param>
        /// <param name="name">name of teh container</param>
        /// <param name="height">height of the container</param>
        /// <param name="width">width of the container</param>
        /// <param name="parentContainerId">Parent of the nw container</param>
        /// <returns>Save Or Not Saved message</returns>
        /// <writer>Amit Bansal</writer>
        public JsonResult SaveContainer(int warehouseId, int locatorId, string value, string name, Decimal height, Decimal width, int parentContainerId)
        {
            Ctx ctx = Session["ctx"] as Ctx;
            ProductContainerModel model = new ProductContainerModel(ctx);

            return(Json(JsonConvert.SerializeObject(model.SaveProductContainer(warehouseId, locatorId, value, name, height, width, parentContainerId)), JsonRequestBehavior.AllowGet));
        }