13 lines
299 B
C#
13 lines
299 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UserPermissionTest_CS_WinForms
|
|
{
|
|
public interface IUserRepository
|
|
{
|
|
List<User> LoadUsers();
|
|
void SaveUsers(List<User> users);
|
|
List<string> LoadPermissions();
|
|
void SavePermissions(List<string> permissions);
|
|
}
|
|
}
|