Updated refrences

This commit is contained in:
batgo6o
2021-03-14 11:16:35 +02:00
parent 2b23d51c3e
commit 5924ee0dd9
6 changed files with 7 additions and 6 deletions

View File

@@ -12,4 +12,9 @@
<ProjectReference Include="..\Models\Data.csproj" /> <ProjectReference Include="..\Models\Data.csproj" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Folder Include="Business\Sales\" />
<Folder Include="Business\UserManagment\" />
</ItemGroup>
</Project> </Project>

View File

@@ -6,6 +6,6 @@ namespace Data
{ {
public static class Configuration public static class Configuration
{ {
public const string ConnectionString = "Data Source=CYNTHIA-PC;Initial Catalog=LuminousSales;Integrated Security=True"; public const string ConnectionString = "Data Source=(localdb)\\MSSQLLocalDB;Initial Catalog=LuminousSales;Integrated Security=True;";
} }
} }

View File

@@ -1,7 +1,5 @@
using Data.Base; using Data.Base;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Models.Models namespace Models.Models
{ {

View File

@@ -1,6 +1,4 @@
using Data.Base; using Data.Base;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Models.Models namespace Models.Models
{ {

View File

@@ -1,6 +1,6 @@
using Data.Base; using Data.Base;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Models.Models namespace Models.Models
{ {