Skip to content
This repository was archived by the owner on Aug 7, 2020. It is now read-only.

Commit 3c2faee

Browse files
authored
Merge pull request #13 from sqlcollaborative/sqlsatdc
Made CCV a required field
2 parents bd1a3e9 + cf4850b commit 3c2faee

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

AlwaysEncryptedSample.Models/CreditCard.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public CreditCard()
2424
public byte ExpMonth { get; set; }
2525
[Required]
2626
public short ExpYear { get; set; }
27+
[Required]
2728
public short CCV { get; set; }
2829
[Required]
2930
public DateTime ModifiedDate { get; set; }

AlwaysEncryptedSample.Tests/App.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
-->
66
<configuration>
77
<appSettings>
8-
98
</appSettings>
109

1110
<connectionStrings>
12-
1311
</connectionStrings>
1412
<startup>
1513
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>

0 commit comments

Comments
 (0)