aktueller Stand
This commit is contained in:
16
FasdDesktopUi/Basics/CustomEvents/HeadingDataEventArgs.cs
Normal file
16
FasdDesktopUi/Basics/CustomEvents/HeadingDataEventArgs.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using FasdDesktopUi.Basics.Models;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace FasdDesktopUi.Basics.CustomEvents
|
||||
{
|
||||
public class HeadingDataEventArgs : EventArgs
|
||||
{
|
||||
public IEnumerable<cHeadingDataModel> NewValue { get; }
|
||||
|
||||
public HeadingDataEventArgs(IEnumerable<cHeadingDataModel> headingData) : base()
|
||||
{
|
||||
NewValue = headingData;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
FasdDesktopUi/Basics/CustomEvents/RelationEventArgs.cs
Normal file
11
FasdDesktopUi/Basics/CustomEvents/RelationEventArgs.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using C4IT.FASD.Base;
|
||||
using System;
|
||||
using System.Linq;
|
||||
|
||||
namespace FasdDesktopUi.Basics.CustomEvents
|
||||
{
|
||||
public class RelationEventArgs : EventArgs
|
||||
{
|
||||
public ILookup<enumFasdInformationClass, cF4sdApiSearchResultRelation> Relations { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using C4IT.FASD.Base;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace FasdDesktopUi.Basics.CustomEvents
|
||||
{
|
||||
public class SupportCaseDataEventArgs : EventArgs
|
||||
{
|
||||
public cF4sdApiSearchResultRelation Relation { get; set; }
|
||||
public IEnumerable<cF4SDHealthCardRawData.cHealthCardTable> DataTables { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user