14 lines
316 B
C#
14 lines
316 B
C#
using Demo.Data.RemoteData.RemoteDataBase.DAO;
|
|
using Demo.domain.Models;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Demo.Data.Repository
|
|
{
|
|
public interface IUserRepository
|
|
{
|
|
List<UserDao> GetAllUsers();
|
|
bool RemoveUserById(int userId);
|
|
UserDao? UpdateUser(UserDao user);
|
|
}
|
|
}
|