presence/Demo/Data/Repository/IUserRepository.cs

15 lines
379 B
C#
Raw Permalink Normal View History

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(int userId, string newFIO, int groupId);
List<UserDao> GetUserNames();
}
}