Ejemplo n.º 1
0
 public Engine(IWriter writer, IReader reader)
 {
     this.context = new AgriIPCAContext();
     this.manager = new CommandManager(writer, reader, this.context);
     this.writer  = writer;
     this.reader  = reader;
     isLoggedIn   = false;
 }
Ejemplo n.º 2
0
 public CommandManager(IWriter writer, IReader reader, AgriIPCAContext context)
 {
     this.writer  = writer;
     this.reader  = reader;
     this.context = new AgriIPCAContext();
 }