public Action(string name, long row)
 {
     this.Name = name;
     this.Row = row;
     this.Result = new Result();
     this.Fase = Fase;
 }
 public Action(string name, FASE fase)
 {
     this.Name = name;
     this.Fase = fase;
 }
 public FrameworkAction(string name, FASE fase)
     : base(name,fase)
 {
 }