iaccountdao.cs

来自「ibatis源码及帮助文档(IBatis源码+xsd+帮助)」· CS 代码 · 共 25 行

CS
25
字号

using System;
using System.Collections;

using NPetshop.Domain.Accounts;

namespace NPetshop.Persistence.Interfaces.Accounts
{
	/// <summary>
	/// Summary description for IAccountDao.
	/// </summary>
	public interface IAccountDao
	{
		Account GetAccount(string login);

		IList GetUsernameList();

		Account GetAccount(string login, string password);

		void InsertAccount(Account account);

		void UpdateAccount(Account account);
	}
}

⌨️ 快捷键说明

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