Ejemplo n.º 1
0
 public void UpdateCommand(Command cmd)
 {
 }
Ejemplo n.º 2
0
 public void UpdateCommand(Command cmd)
 {
     //Nothing
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 6
0
 public void UpdateCommand(Command command)
 {
     throw new System.NotImplementedException();
 }