Example #1
0
 public async Task Update(NpcScriptEntity entity)
 {
     await _npcScriptRepository.Update(entity);
 }
Example #2
0
 public async Task Delete(NpcScriptEntity entity)
 {
     await _npcScriptRepository.Remove(entity);
 }
Example #3
0
 public async Task Add(NpcScriptEntity entity)
 {
     await _npcScriptRepository.Add(entity);
 }