Interface wipeout

This commit is contained in:
Adam 2023-11-27 22:03:32 +01:00
parent 64c571ef9a
commit 7e4fe211ff
7 changed files with 7 additions and 8 deletions

View File

@ -10,8 +10,4 @@
<ProjectReference Include="..\AyCode.Interfaces\AyCode.Interfaces.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Interfaces\" />
</ItemGroup>
</Project>

View File

@ -5,6 +5,7 @@ using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AyCode.Interfaces.Locations;
namespace AyCode.Entities.Locations
{

View File

@ -1,4 +1,5 @@
using System;
using AyCode.Interfaces.Profiles;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

View File

@ -5,6 +5,7 @@ using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AyCode.Interfaces.Users;
namespace AyCode.Entities.Users
{

View File

@ -1,7 +1,7 @@
using AyCode.Interfaces.Entities;
namespace AyCode.Entities.Locations;
namespace AyCode.Interfaces.Locations;
public interface ILocationBase : IEntityGuid
{

View File

@ -3,7 +3,7 @@ using AyCode.Interfaces.TimeStampInfo;
using AyCode.Interfaces.MediaInfo;
using AyCode.Interfaces.Entities;
namespace AyCode.Entities.Profiles;
namespace AyCode.Interfaces.Profiles;
public interface IProfileBase : IEntityGuid, IOwnerId, ITimeStampInfo, IMediaInfo
{

View File

@ -2,7 +2,7 @@
using AyCode.Interfaces.Entities;
using AyCode.Interfaces.TimeStampInfo;
namespace AyCode.Entities.Users;
namespace AyCode.Interfaces.Users;
public interface IUserBase : IEntityGuid, ITimeStampInfo
{