-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated and fixed mvc test application
- Loading branch information
Showing
30 changed files
with
1,614 additions
and
1,553 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.30011.22 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcTestApplication", "MvcTestApplication\MvcTestApplication.csproj", "{2658E893-EB33-43FE-B4D0-AD16BC76578B}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{2658E893-EB33-43FE-B4D0-AD16BC76578B}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {9288D4A6-BBEC-4995-89CE-5E5AC37851B4} | ||
EndGlobalSection | ||
EndGlobal |
44 changes: 22 additions & 22 deletions
44
...Application/ApplicationDependencyClass.cs → ...Application/ApplicationDependencyClass.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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
using System; | ||
|
||
namespace MvcTestApplication | ||
{ | ||
public class ApplicationDependencyClass : IApplicationDependency | ||
{ | ||
private readonly DateTime _CurrentDateTime; | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the RequestDependencyClass class. | ||
/// </summary> | ||
public ApplicationDependencyClass() | ||
{ | ||
_CurrentDateTime = DateTime.Now; | ||
} | ||
|
||
public string GetContent() | ||
{ | ||
return "This is an application level dependency, constructed on: " + _CurrentDateTime.ToLongTimeString(); | ||
} | ||
} | ||
} | ||
using System; | ||
|
||
namespace MvcTestApplication | ||
{ | ||
public class ApplicationDependencyClass : IApplicationDependency | ||
{ | ||
private readonly DateTime _CurrentDateTime; | ||
|
||
/// <summary> | ||
/// Initializes a new instance of the RequestDependencyClass class. | ||
/// </summary> | ||
public ApplicationDependencyClass() | ||
{ | ||
_CurrentDateTime = DateTime.Now; | ||
} | ||
|
||
public string GetContent() | ||
{ | ||
return "This is an application level dependency, constructed on: " + _CurrentDateTime.ToLongTimeString(); | ||
} | ||
} | ||
} |
Oops, something went wrong.