ProjectDetails_Split_API #103

Merged
admin merged 47 commits from ProjectDetails_Split_API into main 2025-07-11 11:32:34 +00:00
Showing only changes of commit 5cb56b7a10 - Show all commits

View File

@ -31,6 +31,7 @@ namespace MarcoBMS.Services.Controllers
private readonly S3UploadService _s3Service;
private readonly ILoggingService _logger;
private readonly IHubContext<MarcoHub> _signalR;
private readonly CacheUpdateHelper _cache;
private readonly PermissionServices _permissionServices;
public TaskController(ApplicationDbContext context, UserHelper userHelper, S3UploadService s3Service, ILoggingService logger, PermissionServices permissionServices,
@ -41,6 +42,7 @@ namespace MarcoBMS.Services.Controllers
_s3Service = s3Service;
_logger = logger;
_signalR = signalR;
_cache = cache;
_permissionServices = permissionServices;
}