Beispiel #1
0
 public void Execute()
 {
     _controller.Start();
     DeleteHandler?.Delete();
     if (Writer == null)
     {
         OutputProvider.Write(Read());
     }
     else
     {
         Writer.Write(Read());
     }
     Updater.Update();
     _controller.End();
 }