public void UpdateCommand(Command cmd) { }
public void UpdateCommand(Command cmd) { //Nothing }
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); }
public void UpdateCommand(Command command) { throw new System.NotImplementedException(); }