wip being able to soft delete a student

This commit is contained in:
Giovani
2019-05-02 11:28:13 -05:00
parent 5bc0fb9659
commit a288f499f5
6 changed files with 77 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
using MediatR;
using System;
using System.Collections.Generic;
using System.Text;
namespace BrightGlimmer.Service.Commands
{
public class DeleteStudentCommand : IRequest<bool>
{
public Guid Id { get; set; }
public DeleteStudentCommand(Guid id)
{
Id = id;
}
}
}