-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve permit application table (#613)
* Remove unused file * Display permit number in permit application table
- Loading branch information
1 parent
bb3e818
commit e67fe59
Showing
4 changed files
with
17 additions
and
125 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
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 was deleted.
Oops, something went wrong.
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,12 @@ | ||
Imports GaEpd | ||
|
||
Module NullableDates | ||
Public Function GetNullableDateTime(obj As Object) As DateTime? | ||
Dim newDate As Date? = DBUtilities.GetNullableDateTime(obj) | ||
If newDate IsNot Nothing AndAlso newDate = New Date(1776, 7, 4) Then | ||
Return Nothing | ||
End If | ||
Return newDate | ||
End Function | ||
|
||
End Module |