Ejemplo n.º 1
0
 public IEnumerable <OrderListDTO> Get(int pageIndex, int pageCount)
 {
     return(_salesAppService.FindOrders(pageIndex, pageCount));
 }
Ejemplo n.º 2
0
 /// <summary>
 ///    <see
 ///       cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" />
 /// </summary>
 /// <param name="pageIndex">
 ///    <see
 ///       cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" />
 /// </param>
 /// <param name="pageCount">
 ///    <see
 ///       cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" />
 /// </param>
 /// <returns>
 ///    <see
 ///       cref="Microsoft.Samples.NLayerApp.Application.MainBoundedContext.BankingModule.Services.IMainBoundedContextService" />
 /// </returns>
 public List <OrderListDto> FindOrdersInPage(int pageIndex, int pageCount)
 {
     return(_salesAppService.FindOrders(pageIndex, pageCount));
 }