GPIC - Backend  1.0
Aplicações .NET para o backend do GPIC
Referência à classe Persistence.Repositories.StudentDocumentsRepository
Diagrama de heranças da classe Persistence.Repositories.StudentDocumentsRepository
[legenda]
Diagrama de colaboração para Persistence.Repositories.StudentDocumentsRepository:
[legenda]

Membros públicos

 StudentDocumentsRepository (ApplicationDbContext context)
 
async Task< StudentDocumentsCreateAsync (StudentDocuments model)
 
async Task< StudentDocumentsDeleteAsync (Guid? id)
 
async Task< IEnumerable< StudentDocuments > > GetAllAsync (int skip, int take)
 
async Task< StudentDocuments?> GetByIdAsync (Guid? id)
 
async Task< StudentDocuments?> GetByProjectIdAsync (Guid? projectId)
 
async Task< StudentDocuments?> GetByStudentIdAsync (Guid? studentId)
 
async Task< StudentDocumentsUpdateAsync (StudentDocuments model)
 
- Membros públicos herdados de Domain.Interfaces.Repositories.Bases.IGenericCRUDRepository< StudentDocuments >
Task< T?> GetByIdAsync (Guid? id)
 Busca entidade pelo Id informado. Lança uma exceção quando a entidade não é encontrada. Mais...
 
Task< IEnumerable< T > > GetAllAsync (int skip, int take)
 Busca todas as entidades ativas. Mais...
 
Task< T > CreateAsync (T model)
 Cria entidade conforme parâmetros fornecidos. Mais...
 
Task< T > DeleteAsync (Guid? id)
 Remove entidade através do Id informado. Mais...
 
Task< T > UpdateAsync (T model)
 Atualiza entidade conforme parâmetros fornecidos. Mais...
 

Documentação dos Construtores & Destrutor

◆ StudentDocumentsRepository()

Persistence.Repositories.StudentDocumentsRepository.StudentDocumentsRepository ( ApplicationDbContext  context)
inline

Documentação dos métodos

◆ CreateAsync()

async Task<StudentDocuments> Persistence.Repositories.StudentDocumentsRepository.CreateAsync ( StudentDocuments  model)
inline

◆ DeleteAsync()

async Task<StudentDocuments> Persistence.Repositories.StudentDocumentsRepository.DeleteAsync ( Guid?  id)
inline
Grafo de chamadas desta função:

◆ GetAllAsync()

async Task<IEnumerable<StudentDocuments> > Persistence.Repositories.StudentDocumentsRepository.GetAllAsync ( int  skip,
int  take 
)
inline

◆ GetByIdAsync()

async Task<StudentDocuments?> Persistence.Repositories.StudentDocumentsRepository.GetByIdAsync ( Guid?  id)
inline
Este é o diagrama das funções que utilizam esta função:

◆ GetByProjectIdAsync()

async Task<StudentDocuments?> Persistence.Repositories.StudentDocumentsRepository.GetByProjectIdAsync ( Guid?  projectId)
inline

◆ GetByStudentIdAsync()

async Task<StudentDocuments?> Persistence.Repositories.StudentDocumentsRepository.GetByStudentIdAsync ( Guid?  studentId)
inline

◆ UpdateAsync()

async Task<StudentDocuments> Persistence.Repositories.StudentDocumentsRepository.UpdateAsync ( StudentDocuments  model)
inline
Este é o diagrama das funções que utilizam esta função:

A documentação para esta classe foi gerada a partir do seguinte ficheiro: