pr1/Demo/Data/Repository/IUserRepository.cs

17 lines
530 B
C#
Raw Permalink Normal View History

2024-11-17 16:24:01 +00:00
using Demo.Data.RemoteData.RemoteDataBase.DAO;
using Demo.domain.Models;
using System;
using System.Collections.Generic;
namespace Demo.Data.Repository
{
public interface IUserRepository
{
IEnumerable<UserLocalEnity> GetAllUsers { get; }
bool RemoveUserByGuid(Guid userGuid);
bool RemoveUserById(int userId); // Новый метод для удаления пользователя по ID
UserLocalEnity? UpdateUser(UserLocalEnity user);
List<UserDao> GetUserNames();
}
}