-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CODE RUB: Replaced the abstract classes with interfaces
- Loading branch information
Showing
18 changed files
with
63 additions
and
106 deletions.
There are no files selected for viewing
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
20 changes: 0 additions & 20 deletions
20
...on.Providers.Abstractions/Models/Exceptions/Bases/SerializationDependencyExceptionBase.cs
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...rs.Abstractions/Models/Exceptions/Bases/SerializationDependencyValidationExceptionBase.cs
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...ation.Providers.Abstractions/Models/Exceptions/Bases/SerializationServiceExceptionBase.cs
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...on.Providers.Abstractions/Models/Exceptions/Bases/SerializationValidationExceptionBase.cs
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
...rialization.Providers.Abstractions/Models/Exceptions/ISerializationDependencyException.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,9 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
namespace STX.Serialization.Providers.Abstractions.Models.Exceptions | ||
{ | ||
public interface ISerializationDependencyException | ||
{ } | ||
} |
9 changes: 9 additions & 0 deletions
9
...ialization.Providers.Abstractions/Models/Exceptions/ISerializationDependencyValidation.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,9 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
namespace STX.Serialization.Providers.Abstractions.Models.Exceptions | ||
{ | ||
public interface ISerializationDependencyValidationException | ||
{ } | ||
} |
9 changes: 9 additions & 0 deletions
9
STX.Serialization.Providers.Abstractions/Models/Exceptions/ISerializationServiceException.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,9 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
namespace STX.Serialization.Providers.Abstractions.Models.Exceptions | ||
{ | ||
public interface ISerializationServiceException | ||
{ } | ||
} |
9 changes: 9 additions & 0 deletions
9
...rialization.Providers.Abstractions/Models/Exceptions/ISerializationValidationException.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,9 @@ | ||
// ---------------------------------------------------------------------------------- | ||
// Copyright (c) The Standard Organization: A coalition of the Good-Hearted Engineers | ||
// ---------------------------------------------------------------------------------- | ||
|
||
namespace STX.Serialization.Providers.Abstractions.Models.Exceptions | ||
{ | ||
public interface ISerializationValidationException | ||
{ } | ||
} |
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