* Added new Entities and Dtos

* Mapping new classes
* Added new services and Controllers in API
This commit is contained in:
2025-08-07 06:46:43 +02:00
parent 1842fd6146
commit 6139ce97d7
18 changed files with 855 additions and 6 deletions

View File

@@ -105,6 +105,9 @@ builder.Services.AddScoped<IWzClientService, WzClientService>();
builder.Services.AddScoped<IWzHeaderService, WzHeaderService>();
builder.Services.AddScoped<IWzRowMeyleService, WzRowMeyleService>();
builder.Services.AddScoped<IItemCustService, ItemCustService>();
builder.Services.AddScoped<IEdiCustomerOrderImportService, EdiCustomerOrderImportService>();
builder.Services.AddScoped<ICustomerService, CustomerService>();
builder.Services.AddScoped<ICustomerTpService, CustomerTpService>();
builder.Services.AddHostedService<TimedHostedService>();
@@ -122,6 +125,6 @@ app.UseAuthorization();
app.MapControllers();
app.UseHangfireDashboard();
// app.UseHangfireDashboard();
app.Run();