/// <summary>
 /// Create a new BoardColumn object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="boardId">Initial value of the BoardId property.</param>
 /// <param name="name">Initial value of the Name property.</param>
 /// <param name="position">Initial value of the Position property.</param>
 public static BoardColumn CreateBoardColumn(global::System.Guid id, global::System.Guid boardId, global::System.String name, global::System.Int16 position)
 {
     BoardColumn boardColumn = new BoardColumn();
     boardColumn.Id = id;
     boardColumn.BoardId = boardId;
     boardColumn.Name = name;
     boardColumn.Position = position;
     return boardColumn;
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the BoardColumns EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToBoardColumns(BoardColumn boardColumn)
 {
     base.AddObject("BoardColumns", boardColumn);
 }
예제 #3
0
 private void DetachBoardColumns(BoardColumn entity)
 {
     entity.Board = null;
 }
예제 #4
0
 private bool FilterBoardColumns(BoardColumn entity)
 {
     return (entity.BoardId == this.Id);
 }
예제 #5
0
 private void AttachBoardColumns(BoardColumn entity)
 {
     entity.Board = this;
 }