unfinished progress

This commit is contained in:
2020-10-13 21:46:23 -04:00
parent e919026502
commit a2a22af7dd
7 changed files with 67 additions and 3 deletions

View File

@ -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>

View 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
}
}
}