init
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
namespace DTS.Common.Interface.Groups
|
||||
{
|
||||
/// <summary>
|
||||
/// describes a record in the database for a test setup group
|
||||
/// </summary>
|
||||
public interface ITestSetupGroupRecord
|
||||
{
|
||||
/// <summary>
|
||||
/// database id of group
|
||||
/// </summary>
|
||||
int GroupId { get; set; }
|
||||
/// <summary>
|
||||
/// display order of group
|
||||
/// </summary>
|
||||
int DisplayOrder { get; set; }
|
||||
/// <summary>
|
||||
/// Position field (ISO 13499) for group, if available
|
||||
/// [groups can be made of mixed position fields]
|
||||
/// </summary>
|
||||
string Position { get; set; }
|
||||
/// <summary>
|
||||
/// Test Object field (ISO 13499) for group, if available
|
||||
/// [groups can be made of mixed test object fields]
|
||||
/// </summary>
|
||||
string TestObjectType { get; set; }
|
||||
/// <summary>
|
||||
/// database id of test setup group belongs to
|
||||
/// </summary>
|
||||
int TestSetupId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface IMenuViewModel : IBaseViewModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets the Menu View.
|
||||
/// </summary>
|
||||
IMenuView View { get; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
using DTS.Common.Base;
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface ILevelTriggerView : IBaseView { }
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 448 B |
@@ -0,0 +1,16 @@
|
||||
using DTS.Common.Base;
|
||||
// ReSharper disable CheckNamespace
|
||||
|
||||
namespace DTS.Common.Interface
|
||||
{
|
||||
public interface ITestModificationViewModel : IBaseViewModel
|
||||
{
|
||||
ITestModificationView View { get; set; }
|
||||
IBaseViewModel Parent { get; set; }
|
||||
void PublishChanges();
|
||||
// controls whether isocode should be modified when software filter is modified
|
||||
bool UseISOCodeFilterMapping{ get; set; }
|
||||
// controls whether 0 or P is used when isocode is modified because a software filter was modified
|
||||
bool UseZeroForUnfiltered{ get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace Athena.Resources
|
||||
{
|
||||
internal static class ResourceNames
|
||||
{
|
||||
public const string EntryStoryboardName = "InTransition";
|
||||
public const string ExitStoryboardName = "OutTransition";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user