Interface wipeout
This commit is contained in:
parent
64c571ef9a
commit
7e4fe211ff
|
|
@ -10,8 +10,4 @@
|
|||
<ProjectReference Include="..\AyCode.Interfaces\AyCode.Interfaces.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Interfaces\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using AyCode.Interfaces.Entities;
|
||||
|
||||
|
||||
namespace AyCode.Entities.Locations;
|
||||
namespace AyCode.Interfaces.Locations;
|
||||
|
||||
public interface ILocationBase : IEntityGuid
|
||||
{
|
||||
|
|
@ -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
|
||||
{
|
||||
|
|
@ -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
|
||||
{
|
||||
Loading…
Reference in New Issue