Exemplo n.º 1
0
        public void DeleteExp(int ExpID, int ColumnID)
        {
            IGumruk iGumruk = new BSGumruk();

            iGumruk.DeleteExp(ExpID);

            GetDetails(ColumnID);
        }
Exemplo n.º 2
0
        public ActionResult DeleteTableColumnExp(int ExpID, string type)
        {
            IGumruk iGumruk = new BSGumruk();

            if (type == "table")
            {
                iGumruk.DeleteTableExp(ExpID);
            }
            else if (type == "column")
            {
                iGumruk.DeleteExp(ExpID);
            }

            return(Content(""));
        }