...
This commit is contained in:
@@ -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
25
Back/Data/Models/stuff.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user