iprofile.cs

来自「ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码」· CS 代码 · 共 18 行

CS
18
字号
using System;

namespace BookShop.IDAL{
	
	/// <summary>
	/// Interface to the Profile DAL
	/// </summary>
	public interface IProfile{

		/// <summary>
		/// Return the location of the banner image given a favourite category
		/// </summary>
		/// <param name="FavCategory">The user's favourite category</param>
		/// <returns>The location of the banner image</returns>
		string GetBannerPath(string FavCategory);
	}
}

⌨️ 快捷键说明

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