This repository has been archived by the owner on Feb 24, 2023. It is now read-only.
-
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.
Working on adding partial views for account details
- Loading branch information
steamwings
committed
Nov 7, 2019
1 parent
3dac281
commit d826196
Showing
139 changed files
with
8,799 additions
and
8,790 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,25 +1,25 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using YAB.Models; | ||
|
||
namespace YAB.BusinessLayer | ||
{ | ||
public static partial class BL | ||
{ | ||
private static Project1Context _context = null; | ||
|
||
public static void Initialize(Project1Context c) | ||
{ | ||
_context = c; | ||
} | ||
|
||
public static Accounts CreateAccount(NewAccountViewModel vm) | ||
{ | ||
if (_context is null) return null; | ||
Accounts a = new Accounts(); | ||
|
||
return a; | ||
} | ||
} | ||
} | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using YAB.Models; | ||
|
||
namespace YAB.BusinessLayer | ||
{ | ||
public static partial class BL | ||
{ | ||
private static Project1Context _context = null; | ||
|
||
public static void Initialize(Project1Context c) | ||
{ | ||
_context = c; | ||
} | ||
|
||
public static Accounts CreateAccount(NewAccountViewModel vm) | ||
{ | ||
if (_context is null) return null; | ||
Accounts a = new Accounts(); | ||
|
||
return a; | ||
} | ||
} | ||
} |
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,11 +1,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\YAB.Models\YAB.Models.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp3.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\YAB.Models\YAB.Models.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.