slarny4/Demo1/Data/Repository/IUserRepository.cs

15 lines
361 B
C#
Raw Normal View History

2024-11-25 04:33:26 +00:00
using Demo.Data.RemoteData.RemoteDataBase.DAO;
using System;
2024-10-28 12:42:04 +00:00
using System.Collections.Generic;
2024-10-24 08:50:32 +00:00
2024-10-28 12:42:04 +00:00
namespace Demo.Data.Repository
2024-10-24 08:50:32 +00:00
{
public interface IUserRepository
{
IEnumerable<User> GetAllUsers();
User GetUserById(Guid id);
void UpdateUser(User user);
void DeleteUser(Guid id);
2024-11-25 04:33:26 +00:00
void AddUser(User user);
2024-10-24 08:50:32 +00:00
}
}