25 lines
655 B
C#
25 lines
655 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Linq.Expressions;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WhiteLagoon.Application.Common.Interfaces;
|
|
using WhiteLagoon.Domain.Entities;
|
|
using WhiteLagoon.Infrastructure.Data;
|
|
|
|
namespace WhiteLagoon.Infrastructure.Repository
|
|
{
|
|
public class ApplicationUserRepository : Repository<ApplicationUser>, IApplicationUserRepository
|
|
{
|
|
private readonly ApplicationDbContext _db;
|
|
|
|
public ApplicationUserRepository(ApplicationDbContext db) : base(db)
|
|
{
|
|
_db = db;
|
|
}
|
|
|
|
}
|
|
}
|