xxxproject/Demo/Data/Repository/IUserRepository.cs

14 lines
396 B
C#
Raw Permalink Normal View History

2024-10-30 09:11:19 +00:00
using Demo.Data.Entity;
using System.Collections.Generic;
namespace Demo.Data.Repository
{
public interface IUserRepository
{
bool AddUser(UserLocalEnity newUser);
List<UserLocalEnity> GetAllUsers();
UserLocalEnity GetUserById(Guid userID);
bool RemoveUserById(Guid userID);
bool UpdateUserById(Guid userID, UserLocalEnity updatedUser);
}
}