예제 #1
0
 public void UpdateCommand(Command cmd)
 {
 }
예제 #2
0
 public void UpdateCommand(Command cmd)
 {
     //Nothing
 }
예제 #3
0
 public void CreateCommand(Command cmd)
 {
     throw new System.NotImplementedException();
 }
 public void DeleteCommand(Command cmd)
 {
     if (cmd == null) throw new ArgumentNullException(nameof(cmd));
     _context.Commands.Remove(cmd);
 }
 public void CreateCommand(Command cmd)
 {
     if (cmd == null) throw new ArgumentNullException(nameof(cmd));
     _context.Commands.Add(cmd);
 }
예제 #6
0
 public void UpdateCommand(Command command)
 {
     throw new System.NotImplementedException();
 }