added "UserPermissionTesting_CS_WinForms" project
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user