File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
Infrastructure/Extensions Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11using System . Net ;
22using Initium . Exceptions ;
3- using Initium . Infrastructure ;
43using Initium . Infrastructure . Filters ;
4+ using Initium . Services ;
55using Microsoft . AspNetCore . Mvc ;
66
77namespace Initium . Controllers ;
Original file line number Diff line number Diff line change 11using System . Security . Claims ;
2+ using Initium . Services ;
23using Microsoft . AspNetCore . Http ;
34
45namespace Initium . Infrastructure . Extensions ;
Original file line number Diff line number Diff line change 2323 </PropertyGroup >
2424
2525 <ItemGroup >
26- <FrameworkReference Include =" Microsoft.AspNetCore.App" Version = " 2.2.8 " />
26+ <FrameworkReference Include =" Microsoft.AspNetCore.App" />
2727 </ItemGroup >
2828
2929 <ItemGroup >
Original file line number Diff line number Diff line change 22using System . Security . Claims ;
33using Microsoft . AspNetCore . Http ;
44
5- namespace Initium . Infrastructure ;
5+ namespace Initium . Services ;
66
77[ SuppressMessage ( "ReSharper" , "CollectionNeverQueried.Global" ) ]
88public abstract class BaseService
@@ -31,4 +31,7 @@ protected internal TService Set<TService>(Action<TService> setter) where TServic
3131 setter ( ( TService ) this ) ;
3232 return ( TService ) this ;
3333 }
34- }
34+ }
35+
36+ // public class BaseService<TEntity> : BaseService where TEntity : BaseEntity;
37+ // public class BaseService<TEntity, TKey> : BaseService where TEntity : BaseEntity<TKey>;
Original file line number Diff line number Diff line change 11using System . Diagnostics . CodeAnalysis ;
22using Microsoft . Extensions . Hosting ;
33
4- namespace Initium . Infrastructure ;
4+ namespace Initium . Workers ;
55
66[ SuppressMessage ( "ReSharper" , "MemberCanBePrivate.Global" ) ]
77[ SuppressMessage ( "ReSharper" , "UnusedParameter.Global" ) ]
You can’t perform that action at this time.
0 commit comments