-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adicionando tabela Qualis do Pondoc.
- Loading branch information
1 parent
9eb03c3
commit 898e573
Showing
10 changed files
with
693 additions
and
4 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
8 changes: 8 additions & 0 deletions
8
backend/Infrastructure/Repositories/PondocQualis/IPondocQualisRepository.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,8 @@ | ||
using saga.Models.Entities; | ||
|
||
namespace saga.Infrastructure.Repositories.PondocQualis | ||
{ | ||
/// <inheritdoc /> | ||
public interface IPondocQualisRepository : IBaseRepository<PondocQualisEntity> | ||
{ } | ||
} |
14 changes: 14 additions & 0 deletions
14
backend/Infrastructure/Repositories/PondocQualis/PondocQualisRepository.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,14 @@ | ||
using System.Linq.Expressions; | ||
using saga.Infrastructure.Extensions; | ||
using saga.Models.Entities; | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace saga.Infrastructure.Repositories.PondocQualis | ||
{ | ||
/// <inheritdoc /> | ||
public class PondocQualisRepository : BaseRepository<PondocQualisEntity>, IPondocQualisRepository | ||
{ | ||
public PondocQualisRepository(ContexRepository dbContext) : base(dbContext) | ||
{ } | ||
} | ||
} |
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.