start cod

This commit is contained in:
mmrbnjd
2024-05-08 17:43:41 +03:30
parent 716f02baa1
commit c3c74635cb
5 changed files with 123 additions and 5 deletions

20
Shared/DTOs/RCOD.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs
{
public class RCOD
{
public int? ID { get; set; }
public string? TaxID { get; set; }
public string Title { get; set; }
public int UnitID { get; set; }
public string? Unit { get; set; }
public int TaxRate { get; set; }
}
}

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shared.DTOs.Serch
{
public class ItemSerchGetCOD : IFildGlobalItemSerch
{
public int? CODID { get; set; }
public string? ItemTaxID { get; set; }
public string? Title { get; set; }
public int? UnitID { get; set; }
public int PageIndex { get; set; } = 1;
public int PageSize { get; set; } = 5;
}
}