forked from AcaMate/AcaMate_API
28 lines
555 B
C#
28 lines
555 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using AcaMate.Common.Data;
|
|
using AcaMate.Common.Models;
|
|
using AcaMate.V1.Models;
|
|
|
|
namespace AcaMate.V1.Repositories;
|
|
|
|
public class UserRepository
|
|
{
|
|
|
|
private readonly AppDbContext _context;
|
|
|
|
|
|
public UserRepository(AppDbContext context) {
|
|
_context = context;
|
|
|
|
}
|
|
|
|
/*
|
|
public async Task<IEnumerable<UserAcademyResult>> GetUserAcademyInfoBySnsIdAsync(string snsId)
|
|
{
|
|
|
|
}*/
|
|
} |