Files
C4IT-F4SD-Client/FasdDesktopUi/Basics/Services/SupportCase/ISupportCase.cs
2025-11-11 11:03:42 +01:00

21 lines
874 B
C#

using C4IT.FASD.Base;
using FasdDesktopUi.Basics.Services.RelationService;
using System;
using System.Collections.Generic;
using System.Linq;
namespace FasdDesktopUi.Basics.Services.SupportCase
{
public interface ISupportCase
{
cSupportCaseDataProvider SupportCaseDataProviderArtifact { get; }
void Initialize();
void AddCaseRelations(ILookup<enumFasdInformationClass, cF4sdApiSearchResultRelation> relations);
ILookup<enumFasdInformationClass, cF4sdApiSearchResultRelation> GetCaseRelations();
IEnumerable<cF4SDHealthCardRawData.cHealthCardTable> GetSupportCaseHealthcardData(object identities, object valueAddress);
void UpdateSupportCaseDataCache();
event EventHandler<RelationEventArgs> CaseRelationsAdded;
event EventHandler<object> SupportCaseDataCacheHasChanged;
}
}