Repository.Task.AddCorrectiveTask: Difference between revisions
Jump to navigation
Jump to search
Alex Ulanov (talk | contribs) |
Alex Ulanov (talk | contribs) |
||
Line 20: | Line 20: | ||
{{APIComment|'After creating the task, update the repository}} | {{APIComment|'After creating the task, update the repository}} | ||
Dim SuccessAddCorrectiveTask As Boolean = False | Dim SuccessAddCorrectiveTask As Boolean = False | ||
SuccessAddCorrectiveTask = MyRepository.AddCorrectiveTask(newCorrectiveTask) | SuccessAddCorrectiveTask = MyRepository.Task.AddCorrectiveTask(newCorrectiveTask) |
Revision as of 16:33, 22 May 2015
Saves the corrective task in the repository. Returns True if successful, otherwise returns False.
Syntax
- AddCorrectiveTask( task As cCorrectiveTask ) As Boolean
Parameters
- task: The cCorrectiveTask to add.
Usage Example
'Declare a new repository connection object. Dim MyRepository As New Repository 'Connect to the Synthesis repository. Dim Success As Boolean = False Success = MyRepository.ConnectToRepository("RepositoryFileNamePath") 'Declare a new cCorrectiveTask. Dim newCorrectiveTask As New cCorrectiveTask("NewCorrectiveTask1") 'After creating the task, update the repository Dim SuccessAddCorrectiveTask As Boolean = False SuccessAddCorrectiveTask = MyRepository.Task.AddCorrectiveTask(newCorrectiveTask)