-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(aai.backend.g1a):commit before rebasing
- Loading branch information
Showing
44 changed files
with
490 additions
and
222 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
aait/backend/group-1A/Application/Contracts/IUnitOfWork.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,22 @@ | ||
|
||
|
||
using SocialSync.Application.Contracts; | ||
|
||
namespace Application.Contracts | ||
{ | ||
public interface IUnitOfWork : IDisposable | ||
{ | ||
IAuthRepository AuthRepository{get;} | ||
ICommentRepository CommentRepository{get;} | ||
ICommentReactionRepository CommentReactionRepository{get;} | ||
IFollowRepository FollowRepository{get;} | ||
INotificationRepository NotificationRepository{get;} | ||
ITagRepository TagRepository{get;} | ||
IPostRepository PostRepository{get;} | ||
IPostReactionRepository PostReactionRepository{get;} | ||
IUserRepository UserRepository{get;} | ||
|
||
IPostTagRepository PostTagRepository{get;} | ||
Task<int> Save(); | ||
} | ||
} |
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
Oops, something went wrong.