using Microsoft.EntityFrameworkCore; namespace AutobusApi.Application.Common.Models; public class PaginatedList { public IReadOnlyCollection Items { get; } public int PageNumber { get; } public int TotalPages { get; } public int TotalCount { get; } public PaginatedList(IReadOnlyCollection items, int count, int pageNumber, int pageSize) { PageNumber = pageNumber; TotalPages = (int)Math.Ceiling(count / (double)pageSize); TotalCount = count; Items = items; } public bool HasPreviousPage => PageNumber > 1; public bool HasNextPage => PageNumber < TotalPages; public static async Task> CreateAsync(IQueryable source, int pageNumber, int pageSize) { var count = await source.CountAsync(); var items = await source.Skip((pageNumber - 1) * pageSize).Take(pageSize).ToListAsync(); return new PaginatedList(items, count, pageNumber, pageSize); } }