Skip to content

Commit

Permalink
clean unused items
Browse files Browse the repository at this point in the history
  • Loading branch information
ShohruzBobobekov committed May 5, 2023
1 parent c2ebc0f commit 596470b
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
using AutoMapper;
using FluentValidation;
using QuizApp.Application.Abstractions;
using QuizApp.Application.Abstractions;
using QuizApp.Domain.Entities;
using QuizApp.Domain.Repositories;
using QuizApp.Domain.Shared;
using System.Text;

namespace QuizApp.Application.ExamAttendants;

public class CreateExamAttendantCommandHendler : ICommandHandler<CreateExamAttendantCommand, ExamAttendantResponse>
{
private readonly IExamAttendantRepository repository;
private readonly IValidator<CreateExamAttendantCommand> validator;
private readonly IUnitOfWork unitOfWork;

public CreateExamAttendantCommandHendler(
IExamAttendantRepository repository,
IValidator<CreateExamAttendantCommand> validator,
IUnitOfWork unitOfWork)
{
this.repository = repository;
this.validator = validator;
this.unitOfWork = unitOfWork;
}

Expand Down

0 comments on commit 596470b

Please sign in to comment.