Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
com.akaver.sportmap
SportMap-ASPNET
Commits
2e314c36
Commit
2e314c36
authored
May 15, 2020
by
Andres Käver
Browse files
nuget
parent
c055e5c7
Pipeline
#824
passed with stages
in 1 minute and 54 seconds
Changes
62
Pipelines
1
Show whitespace changes
Inline
Side-by-side
BLL.App.DTO/GpsLocation.cs
View file @
2e314c36
...
...
@@ -2,7 +2,7 @@ using System;
using
BLL.App.DTO.Identity
;
using
Contracts.DAL.Base
;
using
System.Text.Json.Serialization
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/GpsLocationType.cs
View file @
2e314c36
...
...
@@ -3,7 +3,7 @@ using System.Collections.Generic;
using
System.ComponentModel.DataAnnotations
;
using
System.Text.Json.Serialization
;
using
Contracts.DAL.Base
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/GpsSession.cs
View file @
2e314c36
...
...
@@ -4,7 +4,7 @@ using System.ComponentModel.DataAnnotations;
using
System.Text.Json.Serialization
;
using
BLL.App.DTO.Identity
;
using
Contracts.DAL.Base
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/GpsSessionType.cs
View file @
2e314c36
using
System
;
using
System.Collections.Generic
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/Identity/AppRole.cs
View file @
2e314c36
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
Contracts.DAL.Base
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO.Identity
{
...
...
BLL.App.DTO/Identity/AppUser.cs
View file @
2e314c36
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
Contracts.DAL.Base
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO.Identity
{
...
...
BLL.App.DTO/LangStr.cs
View file @
2e314c36
using
System
;
using
System.Collections.Generic
;
using
System.ComponentModel.DataAnnotations.Schema
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/LangStrTranslation.cs
View file @
2e314c36
using
System
;
using
System.ComponentModel.DataAnnotations
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/Track.cs
View file @
2e314c36
...
...
@@ -2,7 +2,7 @@ using System;
using
System.Collections.Generic
;
using
System.ComponentModel.DataAnnotations
;
using
BLL.App.DTO.Identity
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.App.DTO/TrackPoint.cs
View file @
2e314c36
using
System
;
using
System.Collections.Generic
;
using
BLL.App.DTO.Identity
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.App.DTO
{
...
...
BLL.Base/Services/BaseEntityService.cs
View file @
2e314c36
...
...
@@ -6,7 +6,7 @@ using Contracts.BLL.Base.Mappers;
using
Contracts.BLL.Base.Services
;
using
Contracts.DAL.Base
;
using
Contracts.DAL.Base.Repositories
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
BLL.Base.Services
{
...
...
Contracts.BLL.Base/Services/IBaseEntityService.cs
View file @
2e314c36
using
System
;
using
Contracts.DAL.Base
;
using
Contracts.DAL.Base.Repositories
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
Contracts.BLL.Base.Services
{
...
...
Contracts.DAL.Base/Contracts.DAL.Base.csproj
View file @
2e314c36
...
...
@@ -5,11 +5,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="com.akaver.sportmap.Contracts.Domain" Version="1.0.0" />
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="3.1.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Contracts.Domain\Contracts.Domain.csproj" />
</ItemGroup>
</Project>
Contracts.DAL.Base/IBaseEntityTracker.cs
View file @
2e314c36
using
System
;
using
System.Collections.Generic
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
Contracts.DAL.Base
{
...
...
Contracts.DAL.Base/Repositories/IBaseRepository.cs
View file @
2e314c36
using
System
;
using
System.Collections.Generic
;
using
System.Threading.Tasks
;
using
Contracts.Domain
;
using
com.akaver.sportmap.
Contracts.Domain
;
namespace
Contracts.DAL.Base.Repositories
{
...
...
Contracts.Domain/Contracts.Domain.csproj
deleted
100644 → 0
View file @
c055e5c7
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="3.1.3" />
</ItemGroup>
</Project>
Contracts.Domain/IDomainEntityId.cs
deleted
100644 → 0
View file @
c055e5c7
using
System
;
namespace
Contracts.Domain
{
public
interface
IDomainEntityId
:
IDomainEntityId
<
Guid
>
{
}
public
interface
IDomainEntityId
<
TKey
>
where
TKey
:
IEquatable
<
TKey
>
{
TKey
Id
{
get
;
set
;
}
}
}
\ No newline at end of file
Contracts.Domain/IDomainEntityMetadata.cs
deleted
100644 → 0
View file @
c055e5c7
using
System
;
namespace
Contracts.Domain
{
public
interface
IDomainEntityMetadata
{
string
?
CreatedBy
{
get
;
set
;
}
DateTime
CreatedAt
{
get
;
set
;
}
string
?
ChangedBy
{
get
;
set
;
}
DateTime
ChangedAt
{
get
;
set
;
}
}
}
\ No newline at end of file
Contracts.Domain/IDomainEntityUser.cs
deleted
100644 → 0
View file @
c055e5c7
using
System
;
using
Microsoft.AspNetCore.Identity
;
namespace
Contracts.Domain
{
public
interface
IDomainEntityUser
<
TUser
>
:
IDomainEntityUser
<
Guid
,
TUser
>
where
TUser
:
IdentityUser
<
Guid
>
{
}
public
interface
IDomainEntityUser
<
TKey
,
TUser
>
where
TKey
:
IEquatable
<
TKey
>
where
TUser
:
IdentityUser
<
TKey
>
{
public
TKey
AppUserId
{
get
;
set
;
}
public
TUser
?
AppUser
{
get
;
set
;
}
}
}
\ No newline at end of file
DAL.App.DTO/DAL.App.DTO.csproj
View file @
2e314c36
...
...
@@ -9,4 +9,8 @@
<ProjectReference Include="..\DAL.Base\DAL.Base.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="com.akaver.sportmap.Contracts.Domain" Version="1.0.0" />
</ItemGroup>
</Project>
Prev
1
2
3
4
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment