C# Class JelloScrum.Model.Entities.Project

Inheritance: ModelBase
Mostrar archivo Open project: auxilium/JelloScrum Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
AddSprint ( JelloScrum.Model.Entities.Sprint sprint ) : void

Adds the given sprint

AddStory ( Story story ) : void

Adds the given story

GetAllOpenSprints ( ) : IList

Gets all open sprints

GetAllPlannableStories ( ) : IList

Gets all stories that can be planned.

GetAllStoriesWithUndefinedPriorities ( ) : IList

Gets all stories without a priority.

Project ( ) : System.Collections.Generic

Initializes a new instance of the Project class.

Project ( string name, string description ) : System.Collections.Generic

Initializes a new instance of the Project class with the given name and description.

Method Details

AddSprint() public method

Adds the given sprint
public AddSprint ( JelloScrum.Model.Entities.Sprint sprint ) : void
sprint JelloScrum.Model.Entities.Sprint The sprint.
return void

AddStory() public method

Adds the given story
public AddStory ( Story story ) : void
story Story The story.
return void

GetAllOpenSprints() public method

Gets all open sprints
public GetAllOpenSprints ( ) : IList
return IList

GetAllPlannableStories() public method

Gets all stories that can be planned.
public GetAllPlannableStories ( ) : IList
return IList

GetAllStoriesWithUndefinedPriorities() public method

Gets all stories without a priority.
public GetAllStoriesWithUndefinedPriorities ( ) : IList
return IList

Project() public method

Initializes a new instance of the Project class.
public Project ( ) : System.Collections.Generic
return System.Collections.Generic

Project() public method

Initializes a new instance of the Project class with the given name and description.
public Project ( string name, string description ) : System.Collections.Generic
name string The naam.
description string The description.
return System.Collections.Generic