?? gradeservice.cs
字號:
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using IDAL;
using Models;
/************************************
* 類名:AdminService
* 創建日期:2008-3-23
* 功能描述:提供班級信息操作
* 作者: Power By JFStudio.net
* *********************************/
namespace DAL.Access
{
public class GradeService:IGradeService
{
#region Public Methods
public List<Grade> GetAllGrades()
{
List<Grade> objList = new List<Grade>();
return objList;
}
public int GetGradeByGradeName(string gradeName)
{
return 1;
}
#endregion
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -