38 lines
821 B
C#
38 lines
821 B
C#
namespace MyOffice.Data.Repositories.Users;
|
|
|
|
using MyOffice.Data.Models.Users;
|
|
using Repositories;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
public class UserRepository : AppRepository<User>, IUserRepository
|
|
{
|
|
public async Task<User?> GetUserAsync(Guid id)
|
|
{
|
|
return await GetBaseAsync(id);
|
|
}
|
|
|
|
public User? GetUser(Guid id)
|
|
{
|
|
return GetBase(id);
|
|
}
|
|
|
|
public async Task<User?> GetByUserUserNameAsync(string userName)
|
|
{
|
|
return await _context.Users.FirstOrDefaultAsync(x => x.UserName == userName);
|
|
}
|
|
|
|
public User? GetByUserUserName(string userName)
|
|
{
|
|
return _context.Users.FirstOrDefault(x => x.UserName == userName);
|
|
}
|
|
|
|
public async Task<int> AddUserAsync(User user)
|
|
{
|
|
return await AddBaseAsync(user);
|
|
}
|
|
|
|
public async Task<int> UpdateUserAsync(User user)
|
|
{
|
|
return await UpdateBaseAsync(user);
|
|
}
|
|
} |