unfinished progress
This commit is contained in:
parent
e919026502
commit
a2a22af7dd
@ -5,6 +5,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="AutoMapper" Version="10.0.0" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.9">
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.9">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
@ -7,5 +7,7 @@ namespace COA.EnterpriseServices.DataAccess.EntityFramework.Entities
|
|||||||
public class Creditor : IRecord
|
public class Creditor : IRecord
|
||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
public string ClientFirstName { get; set; }
|
||||||
|
public string ClientLastName { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
15
COA.EnterpriseServices.DataAccess/CreditorHelper.cs
Normal file
15
COA.EnterpriseServices.DataAccess/CreditorHelper.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using COA.EnterpriseServices.DataAccess.Models;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace COA.EnterpriseServices.DataAccess
|
||||||
|
{
|
||||||
|
public class CreditorHelper
|
||||||
|
{
|
||||||
|
public Creditor GetCreditor(int id)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
13
COA.EnterpriseServices.DataAccess/Models/Creditor.cs
Normal file
13
COA.EnterpriseServices.DataAccess/Models/Creditor.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
|
namespace COA.EnterpriseServices.DataAccess.Models
|
||||||
|
{
|
||||||
|
public class Creditor : IRecord
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string FirstName { get; set; }
|
||||||
|
public string LastName { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\COA.EnterpriseServices.DataAccess.EntityFramework\COA.EnterpriseServices.DataAccess.EntityFramework.csproj" />
|
||||||
|
<ProjectReference Include="..\COA.EnterpriseServices.DataAccess.QuickBase\COA.EnterpriseServices.DataAccess.QuickBase.csproj" />
|
||||||
|
<ProjectReference Include="..\COA.EnterpriseServices.DataAccess\COA.EnterpriseServices.DataAccess.csproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
13
COA.EnterpriseServices.Sandbox/Program.cs
Normal file
13
COA.EnterpriseServices.Sandbox/Program.cs
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
using COA.EnterpriseServices.DataAccess.EntityFramework;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace COA.EnterpriseServices.Sandbox
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
var dataAcces = new EntityDataAccess
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -3,11 +3,13 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.30611.23
|
VisualStudioVersion = 16.0.30611.23
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "COA.EnterpriseServices.DataAccess", "COA.EnterpriseServices.DataAccess\COA.EnterpriseServices.DataAccess.csproj", "{4F83B6F3-B35E-4688-B59B-2C7750802057}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "COA.EnterpriseServices.DataAccess", "COA.EnterpriseServices.DataAccess\COA.EnterpriseServices.DataAccess.csproj", "{4F83B6F3-B35E-4688-B59B-2C7750802057}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "COA.EnterpriseServices.DataAccess.EntityFramework", "COA.EnterpriseServices.DataAccess.EntityFramework\COA.EnterpriseServices.DataAccess.EntityFramework.csproj", "{A0B3A2C8-63FE-4A94-B900-457C1E8E425E}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "COA.EnterpriseServices.DataAccess.EntityFramework", "COA.EnterpriseServices.DataAccess.EntityFramework\COA.EnterpriseServices.DataAccess.EntityFramework.csproj", "{A0B3A2C8-63FE-4A94-B900-457C1E8E425E}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "COA.EnterpriseServices.DataAccess.QuickBase", "COA.EnterpriseServices.DataAccess.QuickBase\COA.EnterpriseServices.DataAccess.QuickBase.csproj", "{263CA52C-C2B5-417E-910E-50CE16EE33CB}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "COA.EnterpriseServices.DataAccess.QuickBase", "COA.EnterpriseServices.DataAccess.QuickBase\COA.EnterpriseServices.DataAccess.QuickBase.csproj", "{263CA52C-C2B5-417E-910E-50CE16EE33CB}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "COA.EnterpriseServices.Sandbox", "COA.EnterpriseServices.Sandbox\COA.EnterpriseServices.Sandbox.csproj", "{61BE21F9-8C5B-4C99-885A-E0B1E5BDCA79}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@ -27,6 +29,10 @@ Global
|
|||||||
{263CA52C-C2B5-417E-910E-50CE16EE33CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{263CA52C-C2B5-417E-910E-50CE16EE33CB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{263CA52C-C2B5-417E-910E-50CE16EE33CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{263CA52C-C2B5-417E-910E-50CE16EE33CB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{263CA52C-C2B5-417E-910E-50CE16EE33CB}.Release|Any CPU.Build.0 = Release|Any CPU
|
{263CA52C-C2B5-417E-910E-50CE16EE33CB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{61BE21F9-8C5B-4C99-885A-E0B1E5BDCA79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{61BE21F9-8C5B-4C99-885A-E0B1E5BDCA79}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{61BE21F9-8C5B-4C99-885A-E0B1E5BDCA79}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{61BE21F9-8C5B-4C99-885A-E0B1E5BDCA79}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user