Example #1
0
 public async Task Delete(PrivilegeSystem system)
 {
     await _privilegeSystemStore.Delete(system.ID);
 }
Example #2
0
 public async Task Update(PrivilegeSystem system)
 {
     await _privilegeSystemStore.Update(system);
 }
Example #3
0
 public async Task Add(PrivilegeSystem system)
 {
     await _privilegeSystemStore.Add(system);
 }