Restructured query repositries to move ef logic from handlers

This commit is contained in:
Giovani
2019-04-27 00:02:55 -04:00
parent 6da26283f9
commit 565f824076
18 changed files with 169 additions and 59 deletions

View File

@@ -0,0 +1,10 @@
using BrightGlimmer.Domain;
using MediatR;
using System.Collections.Generic;
namespace BrightGlimmer.Service.Queries
{
public class GetStudentsQuery : IRequest<IEnumerable<Student>>
{
}
}