searchkeywordmanager.cs

来自「一个网上书店的源码」· CS 代码 · 共 51 行

CS
51
字号
//============================================================
// Producnt name:		BoBoARTS.DBMad
// Version: 			1.0
// Coded by:			Shen Bo (bo.shen@jb-aptech.com.cn)
// Auto generated at: 	2007-9-6 17:40:19
//============================================================

using System;
using System.Collections.Generic;
using System.Text;
using MyBookShop.DAL;
using MyBookShop.Models;

namespace MyBookShop.BLL
{

    public static partial class SearchKeywordManager
    {
        public static SearchKeyword AddSearchKeyword(SearchKeyword searchKeyword)
        {
            return SearchKeywordService.AddSearchKeyword(searchKeyword);
        }

        public static void DeleteSearchKeyword(SearchKeyword searchKeyword)
        {
            SearchKeywordService.DeleteSearchKeyword(searchKeyword);
        }

        public static void DeleteSearchKeywordById(int id)
        {
            SearchKeywordService.DeleteSearchKeywordById(id);
        }

		public static void ModifySearchKeyword(SearchKeyword searchKeyword)
        {
            SearchKeywordService.ModifySearchKeyword(searchKeyword);
        }
        
        public static IList<SearchKeyword> GetAllSearchKeywords()
        {
            return SearchKeywordService.GetAllSearchKeywords();
        }

        public static SearchKeyword GetSearchKeywordById(int id)
        {
            return SearchKeywordService.GetSearchKeywordById(id);
        }

    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?