using Microsoft.AspNetCore.Identity; using Sequence.Entities; namespace Sequence.Services; public interface ICardService { Task CreateMatchAsync(Guid userIdOne, Guid userIdTwo); ICollection GetCards(); } public class EntityCardService : ICardService { private readonly DbContext context; public EntityCardService(DbContext context) { this.context = context; } public async Task CreateMatchAsync(Guid userIdOne, Guid userIdTwo) { throw new NotImplementedException(); var userOne = await context.FindAsync(userIdOne); var userTwo = await context.FindAsync(userIdTwo); } public ICollection GetCards() { throw new NotImplementedException(); } }