Exemplo n.º 1
0
        public DataSet SearchMenuName(string name)
        {
            MenuInfoDl menuInfoDl = new MenuInfoDl();
            DataSet    ds         = menuInfoDl.SearchMenu(name);

            return(ds);
        }
Exemplo n.º 2
0
        public DataSet GetMenu()
        {
            MenuInfoDl menuinfodl = new MenuInfoDl();
            DataSet    ds         = menuinfodl.GetMenuList();

            return(ds);
        }
Exemplo n.º 3
0
        public string DeleteMenu(string menuId)
        {
            MenuInfoDl menuInfoDl    = new MenuInfoDl();
            string     operationType = menuInfoDl.DeleteMenu(menuId);

            return(operationType);
        }
Exemplo n.º 4
0
        public string AddMenu(MenuInfo menuInfo)
        {
            MenuInfoDl menuInfoDl    = new MenuInfoDl();
            string     operationType = menuInfoDl.InsertMenu(menuInfo);

            return(operationType);
        }