-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LNK-2738: multi-measure reporting changes (#469)
- Loading branch information
Showing
28 changed files
with
814 additions
and
647 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace LantanaGroup.Link.Tenant.Entities | ||
{ | ||
public class ScheduledReportModel | ||
{ | ||
public string[] Daily { get; set; } | ||
|
||
public string[] Weekly { get; set; } | ||
|
||
public string[] Monthly { get; set; } | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using LantanaGroup.Link.Shared.Application.Enums; | ||
using LantanaGroup.Link.Shared.Application.Models.Responses; | ||
using LantanaGroup.Link.Tenant.Entities; | ||
|
||
namespace LantanaGroup.Link.Tenant.Interfaces | ||
{ | ||
public interface IFacilityConfigurationService | ||
{ | ||
Task CreateFacility(FacilityConfigModel newFacility, CancellationToken cancellationToken); | ||
Task<List<FacilityConfigModel>> GetAllFacilities(CancellationToken cancellationToken = default); | ||
Task<PagedConfigModel<FacilityConfigModel>> GetFacilities(string? facilityId, string? facilityName, string? sortBy, SortOrder? sortOrder, int pageSize = 10, int pageNumber = 1, CancellationToken cancellationToken = default); | ||
Task<FacilityConfigModel> GetFacilityByFacilityId(string facilityId, CancellationToken cancellationToken); | ||
Task<FacilityConfigModel> GetFacilityById(string id, CancellationToken cancellationToken); | ||
Task<string> RemoveFacility(string facilityId, CancellationToken cancellationToken); | ||
Task<string> UpdateFacility(string id, FacilityConfigModel newFacility, CancellationToken cancellationToken = default); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.