ihistoricalordersummarydao.cs

来自「NHibernate简单DEMO」· CS 代码 · 共 15 行

CS
15
字号
using System.Collections.Generic;
using BasicSample.Core.Domain;

namespace BasicSample.Core.DataInterfaces
{
    /// <summary>
    /// This is not a typical DAO in the fact that it does not implement <see cref="IDao{TypeOfListItem, IdT}" />
    /// but it can still be a participant of the <see cref="IDaoFactory" />.
    /// </summary>
    public interface IHistoricalOrderSummaryDao
    {
        List<HistoricalOrderSummary> GetCustomerOrderHistoryFor(string customerId);
    }
}

⌨️ 快捷键说明

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