visual studio is drunk
This commit is contained in:
@@ -4,6 +4,16 @@
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.ApplicationInsights" Version="2.17.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.12" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.12" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.12">
|
||||
<PrivateAssets>all</PrivateAssets>
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Models\Models.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
|
||||
namespace LuminousSales.Business
|
||||
|
||||
namespace Business
|
||||
{
|
||||
public class DealsBusiness
|
||||
{
|
||||
@@ -1,12 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
|
||||
namespace LuminousSales.Business
|
||||
|
||||
namespace Business
|
||||
{
|
||||
public class PermissionsBusiness
|
||||
{
|
||||
private PermissionContext permissionContext;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,10 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Business.Businesses;
|
||||
using Models.Models;
|
||||
|
||||
|
||||
namespace Business.Businesses
|
||||
namespace Business
|
||||
{
|
||||
public class ProductBusiness
|
||||
{
|
||||
@@ -1,9 +0,0 @@
|
||||
namespace Business.Business
|
||||
{
|
||||
internal class ProductContext
|
||||
{
|
||||
public ProductContext()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
|
||||
namespace LuminousSales.Business
|
||||
|
||||
namespace Business
|
||||
{
|
||||
public class RolesBusiness
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
|
||||
|
||||
namespace LuminousSales.Business
|
||||
{
|
||||
@@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
|
||||
|
||||
namespace LuminousSales.Business
|
||||
{
|
||||
@@ -1,9 +1,9 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
using Microsoft.ApplicationInsights.Extensibility.Implementation;
|
||||
|
||||
namespace LuminousSales.Business
|
||||
namespace Business
|
||||
{
|
||||
public class UsersBusiness
|
||||
{
|
||||
@@ -1,12 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
using LuminousSales.Data;
|
||||
|
||||
namespace LuminousSales.Business
|
||||
|
||||
namespace Business
|
||||
{
|
||||
public class UsersToRolesBusiness
|
||||
{
|
||||
private UsersToRolesContext usersToRolesContext;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user