Exemplo n.º 1
0
        public MoveLog(MoveComments moveComments)
        {
            Game = moveComments.Move.Game;

            DataTable = GetMoveLogTable();

            this.MoveComments = moveComments;

            UData.LoadDataTable(DataTable, this.MoveComments[MoveCommentTypeE.MoveLog]);
        }
Exemplo n.º 2
0
 public Move(DataRow row)
 {
     this.DataRow = row;
     MoveComments = new MoveComments(this);
 }
Exemplo n.º 3
0
 public Move()
 {
     this.DataRow = Move.NewRow();
     MoveComments = new MoveComments(this);
 }
Exemplo n.º 4
0
        public void Set(MoveComments mc)
        {
            base.DataTable = mc.DataTable.Copy();

            MoveLog.Set(mc.MoveLog);
        }