This commit is contained in:
mmrbnjd
2024-06-26 17:10:29 +03:30
parent df6d5905ac
commit 478456c03f
11 changed files with 247 additions and 7 deletions

View File

@@ -44,6 +44,7 @@ namespace TaxPayer.Infrastructure.Persistence
public DbSet<TiceketUnknownPeople> TiceketUnknownPeoples { get; set; }
public DbSet<SaleLead> SaleLeads { get; set; }
public DbSet<UserNotfi> UserNotifis { get; set; }
public DbSet<stuff> Stuffs { get; set; }
#endregion
//public override Task<int> SaveChangesAsync(CancellationToken cancellationToken = new CancellationToken())
//{

25
Back/Data/Models/stuff.cs Normal file
View File

@@ -0,0 +1,25 @@
namespace Back.Data.Models
{
public class stuff
{
public int ID { get; set; }
//شناسه کالا/خدمت
public string? CID { get; set; }
// نوع شناسه کالا/خدمت
public string? sType { get; set; }
//تاریخ ثبت
public string? sDate { get; set; }
public string? RunDate { get; set; }
public string? ExpirationDate { get; set; }
//عمومی یا خاص بودن شناسه
public string? SpecialOrGeneral { get; set; }
//مشمول یا معاف بودن
public string? TaxableOrFree { get; set; }
//نرخ ارزش افزوده
public string? Vat { get; set; }
// نرخ ارزش افزوده مبادی گمرکی
public string? VatCustomPurposes { get; set; }
//شرح شناسه کالا/خدمت
public string? DescriptionOfID { get; set; }
}
}