-
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.
Create RegisterNotExistsException. Adjust ProductServiceTest structur…
…e. Create delete product tests
- Loading branch information
José Clodoalves da Silva Júnior
committed
Feb 16, 2023
1 parent
59a6705
commit cf255dd
Showing
4 changed files
with
202 additions
and
101 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
WPFSample/WPFSample.Service/Exceptions/Product/RegisterNotExistsException.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WPFSample.Service.Exceptions.Product | ||
{ | ||
public class RegisterNotExistsException : BusinessException | ||
{ | ||
public RegisterNotExistsException(string message) : base(message) | ||
{ | ||
} | ||
} | ||
} |
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
Oops, something went wrong.