Ejemplo n.º 1
0
 public void Cmdbci(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.CmdbciDict.ContainsKey(argValStr))
     {
         _myCmdbci = new lvDataNode(argValStr, Utility.CmdbciDict[argValStr], argStatus);
     }
     else
     {
         _myCmdbci = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 2
0
 public void Priority(lvDataNode argPriority)
 {
     if (argPriority.isNotNullOrEmpty())
     {
         _myPriority = argPriority;
     }
     else
     {
         _myPriority = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 3
0
 public void Impact(lvDataNode argImpact)
 {
     if (argImpact.isNotNullOrEmpty())
     {
         _myImpact = argImpact;
     }
     else
     {
         _myImpact = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 4
0
 public void AssignedTo(lvDataNode argAssignedTo)
 {
     if (argAssignedTo.isNotNullOrEmpty())
     {
         _myAssignedTo = argAssignedTo;
     }
     else
     {
         _myAssignedTo = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 5
0
 public void Priority(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.PriorityDict.ContainsKey(argValStr))
     {
         _myPriority = new lvDataNode(argValStr, Utility.PriorityDict[argValStr], argStatus);
     }
     else
     {
         _myPriority = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 6
0
 public void TaskName(lvDataNode argTaskName)
 {
     if (argTaskName.isNotNullOrEmpty())
     {
         _myTaskName = argTaskName;
     }
     else
     {
         _myTaskName = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 7
0
 public void AssignmentGroup(lvDataNode argAssignmentGroup)
 {
     if (argAssignmentGroup.isNotNullOrEmpty())
     {
         _myAssignmentGroup = argAssignmentGroup;
     }
     else
     {
         _myAssignmentGroup = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 8
0
 public void Schedule(lvDataNode argSchedule)
 {
     if (argSchedule.isNotNullOrEmpty())
     {
         _mySchedule = argSchedule;
     }
     else
     {
         _mySchedule = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 9
0
 public void Risk(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.RiskDict.ContainsKey(argValStr))
     {
         _myRisk = new lvDataNode(argValStr, Utility.RiskDict[argValStr], argStatus);
     }
     else
     {
         _myRisk = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 10
0
 public void ProjMgr(lvDataNode argProjMgr)
 {
     if (argProjMgr.isNotNullOrEmpty())
     {
         _myProjMgr = argProjMgr;
     }
     else
     {
         _myProjMgr = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 11
0
 public void PhaseType(lvDataNode argPhaseType)
 {
     if (argPhaseType.isNotNullOrEmpty())
     {
         _myPhaseType = argPhaseType;
     }
     else
     {
         _myPhaseType = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 12
0
 public void CalculationType(lvDataNode argCalculationType)
 {
     if (argCalculationType.isNotNullOrEmpty())
     {
         _myCalculationType = argCalculationType;
     }
     else
     {
         _myCalculationType = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 13
0
 public void ProjectName(lvDataNode argProjectName)
 {
     if (argProjectName.isNotNullOrEmpty())
     {
         _myProjectName = argProjectName;
     }
     else
     {
         _myProjectName = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 14
0
 public void Cmdbci(lvDataNode argCmdbci)
 {
     if (argCmdbci.isNotNullOrEmpty())
     {
         _myCmdbci = argCmdbci;
     }
     else
     {
         _myCmdbci = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 15
0
 public void IsRollUp(lvDataNode argIsRollUp)
 {
     if (argIsRollUp.isNotNullOrEmpty())
     {
         _myIsRollUp = argIsRollUp;
     }
     else
     {
         _myIsRollUp = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 16
0
 public void Risk(lvDataNode argRisk)
 {
     if (argRisk.isNotNullOrEmpty())
     {
         _myRisk = argRisk;
     }
     else
     {
         _myRisk = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 17
0
 public void TaskNum(lvDataNode argTaskNum)
 {
     if (argTaskNum.isNotNullOrEmpty())
     {
         _myTaskNum = argTaskNum;
     }
     else
     {
         _myTaskNum = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 18
0
 public void StrategicPriority(lvDataNode argStrategicPriority)
 {
     if (argStrategicPriority.isNotNullOrEmpty())
     {
         _myStrategicPriority = argStrategicPriority;
     }
     else
     {
         _myStrategicPriority = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 19
0
 public void Portfolio(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.PortfolioDict.ContainsKey(argValStr))
     {
         _myPortfolio = new lvDataNode(argValStr, Utility.PortfolioDict[argValStr], argStatus);
     }
     else
     {
         _myPortfolio = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 20
0
 public void HotItem(lvDataNode argHotItem)
 {
     if (argHotItem.isNotNullOrEmpty())
     {
         _myHotItem = argHotItem;
     }
     else
     {
         _myHotItem = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 21
0
 public void AssignedTo(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.TaskAssignedToDict.ContainsKey(argValStr))
     {
         _myAssignedTo = new lvDataNode(argValStr, Utility.TaskAssignedToDict[argValStr], argStatus);
     }
     else
     {
         _myAssignedTo = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 22
0
 public void NeedsFollowUp(lvDataNode argNeedsFollowUp)
 {
     if (argNeedsFollowUp.isNotNullOrEmpty())
     {
         _myNeedsFollowUp = argNeedsFollowUp;
     }
     else
     {
         _myNeedsFollowUp = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 23
0
 public void State(lvDataNode argState)
 {
     if (argState.isNotNullOrEmpty())
     {
         _myState = argState;
     }
     else
     {
         _myState = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 24
0
 public void PlannedEndDate(lvDataNode argPlannedEndDate)
 {
     if (argPlannedEndDate.isNotNullOrEmpty())
     {
         _myPlannedEndDate = argPlannedEndDate;
     }
     else
     {
         _myPlannedEndDate = Utility.mtLvDateDataNode;
     }
 }
Ejemplo n.º 25
0
 public void Portfolio(lvDataNode argPortfolio)
 {
     if (argPortfolio.isNotNullOrEmpty())
     {
         _myPortfolio = argPortfolio;
     }
     else
     {
         _myPortfolio = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 26
0
 public void ActualEndDate(string argDtmStr, dStatus argStatus = dStatus._new)
 {
     if ((argDtmStr.Trim().Length > 0) && (argDtmStr.IndexOf("YYYY-MM-DD") < 0))
     {
         _myActualEndDate = new lvDataNode(argDtmStr, argDtmStr, argStatus);
     }
     else
     {
         _myActualEndDate = Utility.mtLvDateDataNode;
     }
 }
Ejemplo n.º 27
0
 public void Impact(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.ImpactDict.ContainsKey(argValStr))
     {
         _myImpact = new lvDataNode(argValStr, Utility.ImpactDict[argValStr], argStatus);
     }
     else
     {
         _myImpact = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 28
0
 public void ActualEndDate(lvDataNode argActualEndDate)
 {
     if (argActualEndDate.isNotNullOrEmpty())
     {
         _myActualEndDate = argActualEndDate;
     }
     else
     {
         _myActualEndDate = Utility.mtLvDateDataNode;
     }
 }
Ejemplo n.º 29
0
 public void TaskType(string argValStr, dStatus argStatus = dStatus._new)
 {
     if (Utility.TaskTypeDict.ContainsKey(argValStr))
     {
         _myTaskType = new lvDataNode(argValStr, Utility.TaskTypeDict[argValStr], argStatus);
     }
     else
     {
         _myTaskType = Utility.mtLvDataNode;
     }
 }
Ejemplo n.º 30
0
 public void Program(lvDataNode argProgram)
 {
     if (argProgram.isNotNullOrEmpty())
     {
         _myProgram = argProgram;
     }
     else
     {
         _myProgram = Utility.mtLvDataNode;
     }
 }