using System; using System.Collections.Generic; using System.Linq; using System.Text; [Serializable] public class oTask { private string _description = String.Empty; public string description { get {return this._description;} set {this._description = value;} } private int _recId = 0; public int recId { get {return this._recId;} set {this._recId = value;} } private int _taskTypeId = 0; public int taskTypeId { get {return this._taskTypeId;} set {this._taskTypeId = value;} } private int _taskCategoryId = 0; public int taskCategoryId { get {return this._taskCategoryId;} set {this._taskCategoryId = value;} } private int _initiatorUserId = 0; public int initiatorUserId { get {return this._initiatorUserId;} set {this._initiatorUserId = value;} } private int _assigneeUserId = 0; public int assigneeUserId { get {return this._assigneeUserId;} set {this._assigneeUserId = value;} } private int _taskStatusId = 0; public int taskStatusId { get {return this._taskStatusId;} set {this._taskStatusId = value;} } private int _canvasId = 0; public int canvasId { get {return this._canvasId;} set {this._canvasId = value;} } private int _taskSnapshotId = 0; public int taskSnapshotId { get {return this._taskSnapshotId;} set {this._taskSnapshotId = value;} } private int _taskSnapshotPosX = 0; public int taskSnapshotPosX { get {return this._taskSnapshotPosX;} set {this._taskSnapshotPosX = value;} } private int _taskSnapshotPosY = 0; public int taskSnapshotPosY { get {return this._taskSnapshotPosY;} set {this._taskSnapshotPosY = value;} } private int _taskPriorityId = 0; public int taskPriorityId { get {return this._taskPriorityId;} set {this._taskPriorityId = value;} } private DateTime _createdDate = DateTime.MinValue; public DateTime createdDate { get {return this._createdDate;} set {this._createdDate = value;} } private DateTime _updatedDate = DateTime.MinValue; public DateTime updatedDate { get {return this._updatedDate;} set {this._updatedDate = value;} } private DateTime _dueDate = DateTime.MinValue; public DateTime dueDate { get {return this._dueDate;} set {this._dueDate = value;} } private string _name = String.Empty; public string name { get {return this._name;} set {this._name = value;} } private string _taskNumber = String.Empty; public string taskNumber { get {return this._taskNumber;} set {this._taskNumber = value;} } private string _customerCode = String.Empty; public string customerCode { get {return this._customerCode;} set {this._customerCode = value;} } private string _projectCode = String.Empty; public string projectCode { get {return this._projectCode;} set {this._projectCode = value;} } private string _custom = String.Empty; public string custom { get {return this._custom;} set {this._custom = value;} } }