-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
94 changed files
with
2,706 additions
and
372 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
10 changes: 10 additions & 0 deletions
10
examples/FrameworkTester/DesignTimes/WinBioCancelViewModel.cs
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,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioCancelViewModel : WinBioViewModel, IWinBioCancelViewModel | ||
{ | ||
} | ||
|
||
} |
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
24 changes: 24 additions & 0 deletions
24
examples/FrameworkTester/DesignTimes/WinBioEnrollBeginViewModel.cs
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,24 @@ | ||
using System.Collections.Generic; | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnrollBeginViewModel : WinBioViewModel, IWinBioEnrollBeginViewModel | ||
{ | ||
|
||
public FingerPosition SelectedFingerPosition | ||
{ | ||
get; | ||
set; | ||
} | ||
|
||
public IEnumerable<FingerPosition> FingerPositions | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
examples/FrameworkTester/DesignTimes/WinBioEnrollCaptureViewModel.cs
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 FrameworkTester.ViewModels.Interfaces; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnrollCaptureViewModel : WinBioViewModel, IWinBioEnrollCaptureViewModel | ||
{ | ||
|
||
public RejectDetails RejectDetail | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
23 changes: 23 additions & 0 deletions
23
examples/FrameworkTester/DesignTimes/WinBioEnrollCaptureWithCallbackViewModel.cs
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,23 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnrollCaptureWithCallbackViewModel : WinBioViewModel, IWinBioEnrollCaptureWithCallbackViewModel | ||
{ | ||
|
||
public RelayCommand CancelCommand | ||
{ | ||
get; | ||
} | ||
|
||
public RejectDetails RejectDetail | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
28 changes: 28 additions & 0 deletions
28
examples/FrameworkTester/DesignTimes/WinBioEnrollCommitViewModel.cs
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,28 @@ | ||
using System; | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using WinBiometricDotNet; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnrollCommitViewModel : WinBioViewModel, IWinBioEnrollCommitViewModel | ||
{ | ||
|
||
public IdentityTypes Type | ||
{ | ||
get; | ||
} | ||
|
||
public string Sid | ||
{ | ||
get; | ||
} | ||
|
||
public Guid TemplateGuid | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
examples/FrameworkTester/DesignTimes/WinBioEnrollDiscardViewModel.cs
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,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioEnrollDiscardViewModel : WinBioViewModel, IWinBioEnrollDiscardViewModel | ||
{ | ||
} | ||
|
||
} |
2 changes: 0 additions & 2 deletions
2
examples/FrameworkTester/DesignTimes/WinBioEnumEnrollmentsViewModel.cs
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
16 changes: 16 additions & 0 deletions
16
examples/FrameworkTester/DesignTimes/WinBioLocateSensorViewModel.cs
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,16 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioLocateSensorViewModel : WinBioViewModel, IWinBioLocateSensorViewModel | ||
{ | ||
|
||
public uint UnitId | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
22 changes: 22 additions & 0 deletions
22
examples/FrameworkTester/DesignTimes/WinBioLocateSensorWithCallbackViewModel.cs
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,22 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
using GalaSoft.MvvmLight.Command; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioLocateSensorWithCallbackViewModel : WinBioViewModel, IWinBioLocateSensorWithCallbackViewModel | ||
{ | ||
|
||
public RelayCommand CancelCommand | ||
{ | ||
get; | ||
} | ||
|
||
public uint UnitId | ||
{ | ||
get; | ||
} | ||
|
||
} | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
examples/FrameworkTester/DesignTimes/WinBioLockUnitViewModel.cs
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,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioLockUnitViewModel : WinBioViewModel, IWinBioLockUnitViewModel | ||
{ | ||
} | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
examples/FrameworkTester/DesignTimes/WinBioUnlockUnitViewModel.cs
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,10 @@ | ||
using FrameworkTester.ViewModels.Interfaces; | ||
|
||
namespace FrameworkTester.DesignTimes | ||
{ | ||
|
||
public sealed class WinBioUnlockUnitViewModel : WinBioViewModel, IWinBioUnlockUnitViewModel | ||
{ | ||
} | ||
|
||
} |
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.