public ActionResult DeleteStore(int id)
        {
            object[] value      = new object[] { id };
            String   errMessage = "";
            int      errorCode  = 0;

            String[] ouput  = null;
            bool     result = DrupStoreRes.DeleteStore(value, ref ouput, ref errorCode, ref errMessage);

            return(RedirectToAction("ListStore"));
        }