Thanks, Issue Resolved
I have Sent Logs.txt to above Email Please Check.
I have added the controller HttpApi layer and facing Swagger error add a screen shot
namespace Hon.IFS.SiteManagement.SiteRiskIndices
{
[RemoteService(Name = SiteManagementRemoteServiceConsts.RemoteServiceName)]
[Area(SiteManagementRemoteServiceConsts.ModuleName)]
[ControllerName("SiteRiskIndex")]
[Route("api/site-management/site-risk-indices")]
[ApiController]
public class SiteRiskIndexController : ISiteRiskIndexAppService
{
protected ISiteRiskIndexAppService _siteRiskIndexAppService;
public SiteRiskIndexController(ISiteRiskIndexAppService siteRiskIndexAppService)
{
_siteRiskIndexAppService = siteRiskIndexAppService;
}
public async Task<List<RiskIndexDto>> CreateBulkRiskIndicesAsync(Guid siteId, List<Guid> buildingIds)
{
// Implementation logic for creating bulk risk indices
// Replace the following line with actual implementation
return await _siteRiskIndexAppService.CreateBulkRiskIndicesAsync( siteId, buildingIds);
}
public async Task<List<RiskIndexDto>> GetListBySiteAndBuildingsAsync(Guid siteId, List<Guid> buildingIds)
{
// Implementation logic for retrieving risk indices by site and buildings
// Replace the following line with actual implementation
return await _siteRiskIndexAppService.GetListBySiteAndBuildingsAsync(siteId, buildingIds);
}
}
}
If Possible, please provide Step by Step process to create the Custon Api in module Application it Helps
HI have Did that Still the issue is there
How can I Check the blob storage for the file.
{
"name": "TestingTenant",
"editionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"activationState": 0,
"activationEndDate": "2025-06-09T04:25:34.834Z",
"editionEndDateUtc": "2025-06-09T04:25:34.834Z",
"adminEmailAddress": "TestingTenant@gmail.com",
"adminPassword": "Satya@123",
"connectionStrings": {
"default": "string",
"databases": [
{
"databaseName": "string",
"connectionString": "string"
}
]
}
}