public DeleteEmployeeCommandHandler(IMedaitrDBContext context)
 {
     _context = context;
 }
 public GetAllEmployeesQueryHandler(IMedaitrDBContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }