This commit is contained in:
mmrbnjd
2024-04-02 17:14:18 +03:30
parent faa78adae6
commit dd4969f504
11 changed files with 315 additions and 402 deletions

View File

@@ -1,16 +0,0 @@
namespace Back.Common.ViewModels
{
public class PagingDto<T>
{
public PagingDto(int RowCount, int pageCount, List<T> list)
{
this.RowCount = RowCount;
this.list = list;
PageCount = pageCount;
}
public int RowCount { get; set; }
public int PageCount { get; set; }
public List<T> list { get; set; }
}
}

View File

@@ -5,7 +5,8 @@ using System.Data;
using System.Globalization;
using System.Reflection;
using System.Security.Cryptography;
using Back.Common.ViewModels;
using Shared.DTOs;
namespace Back.Common
{