using FlexJobApi.Core; using MediatR; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.FlexJobServer.Application { public class TaskUserQueryHandler : IRequestHandler { public Task Handle(GetTaskUsersQuery request, CancellationToken cancellationToken) { throw new NotImplementedException(); } } }