xxxproject/Demo/Data/Repository/IUserRepository.cs
Class_Student 6b9b5a424f init
2024-10-30 12:11:19 +03:00

14 lines
396 B
C#

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);
}
}