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 relations); ILookup GetCaseRelations(); IEnumerable GetSupportCaseHealthcardData(object identities, object valueAddress); void UpdateSupportCaseDataCache(); event EventHandler CaseRelationsAdded; event EventHandler SupportCaseDataCacheHasChanged; } }