This commit is contained in:
mmrbnjd
2024-07-04 18:49:11 +03:30
parent 73fe6a0992
commit d4410ea328
4 changed files with 33 additions and 5 deletions

View File

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

View File

@@ -0,0 +1,10 @@
namespace Back.Data.Models
{
public class rptQueue
{
public int ID { get; set; }
public int InvoicID { get; set; }
public int CompanyID { get; set; }
}
}