public ActionResult Account_groupdelete(int id)
        {
            Account_group t   = new Account_group();
            Boolean       res = t.DeleteRecord(id);

            if (res)
            {
                return(Content("Record Deleted Successfully"));
            }
            else
            {
                return(Content("Error Deleting Record Try Again"));
            }
        }