public StudentSameNameCheck(DoesStudentFirstMidLastNameAlreadyExist studentExistProcedure)
 {
     _studentExistProcedure = studentExistProcedure;
 }
 public UpdateStudentCommandHandler(IDbContextScopeFactory dbContextScopeFactory, DoesStudentFirstMidLastNameAlreadyExist studentNameExistsProcedure)
 {
     _dbContextScopeFactory      = dbContextScopeFactory;
     _studentNameExistsProcedure = studentNameExistsProcedure;
 }