-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02ae94e
commit 867ea48
Showing
23 changed files
with
59 additions
and
71 deletions.
There are no files selected for viewing
8 changes: 4 additions & 4 deletions
8
src/cappanna-helper-api/CappannaHelper.Api/Common/ErrorManagement/ErrorHandlingMiddleware.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/cappanna-helper-api/CappannaHelper.Api/Hubs/IHubExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
...-helper-api/CappannaHelper.Api/Identity/ComponentModel/SignIn/ApplicationSignInManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 10 additions & 10 deletions
20
src/cappanna-helper-api/CappannaHelper.Api/Identity/ComponentModel/User/IUserManager.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
using System.Threading.Tasks; | ||
using Microsoft.AspNetCore.Identity; | ||
|
||
namespace CappannaHelper.Api.Identity.ComponentModel.User | ||
{ | ||
public interface IUserManager<TUser> where TUser : class | ||
{ | ||
Task<IdentityResult> CreateAsync(TUser user, string password); | ||
Task<TUser> FindByNameAsync(string userName); | ||
} | ||
using Microsoft.AspNetCore.Identity; | ||
using System.Threading.Tasks; | ||
|
||
namespace CappannaHelper.Api.Identity.ComponentModel.User | ||
{ | ||
public interface IUserManager<TUser> where TUser : class | ||
{ | ||
Task<IdentityResult> CreateAsync(TUser user, string password); | ||
Task<TUser> FindByNameAsync(string userName); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 1 addition & 3 deletions
4
src/cappanna-helper-api/CappannaHelper.Api/Models/NotificationModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/cappanna-helper-api/CappannaHelper.Api/Persistence/ApplicationDbContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletions
3
src/cappanna-helper-api/CappannaHelper.Api/Persistence/Modelling/Shift.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
src/cappanna-helper-api/CappannaHelper.Api/Printing/IPrinterDocumentBuilder.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
using CappannaHelper.Printing; | ||
|
||
namespace CappannaHelper.Api.Printing { | ||
public interface IPrinterDocumentBuilder<T> | ||
{ | ||
IDocument Build(); | ||
IPrinterDocumentBuilder<T> SetData(T order); | ||
} | ||
namespace CappannaHelper.Api.Printing; | ||
|
||
public interface IPrinterDocumentBuilder<T> | ||
{ | ||
IDocument Build(); | ||
IPrinterDocumentBuilder<T> SetData(T order); | ||
} |
10 changes: 5 additions & 5 deletions
10
src/cappanna-helper-api/CappannaHelper.Api/Printing/IPrinterDocumentBuilderFactory.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
using CappannaHelper.Api.Printing; | ||
|
||
public interface IPrinterDocumentBuilderFactory | ||
{ | ||
IPrinterDocumentBuilder<T> Create<T>(); | ||
namespace CappannaHelper.Api.Printing; | ||
|
||
public interface IPrinterDocumentBuilderFactory | ||
{ | ||
IPrinterDocumentBuilder<T> Create<T>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 4 additions & 10 deletions
14
src/cappanna-helper-api/CappannaHelper.Api/Printing/PrintService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters