示例#1
0
文件: Task.cs 项目: stgolem/Scrumr
 public Task(AggregateRoot root, Sprint parent, Guid stageId, Guid taskId, String description)
     : base(root, taskId)
 {
     _parent = parent;
     _stageId = stageId;
     _description = description;
 }
示例#2
0
文件: Project.cs 项目: stgolem/Scrumr
        protected void OnSprintAdded(SprintAddedToProject e)
        {
            var sprint = new Sprint(this, e.SprintId, e.Name, e.From, e.To);

            _sprints.Add(sprint);
        }
示例#3
0
文件: Stage.cs 项目: stgolem/Scrumr
 public Stage(AggregateRoot root, Sprint parent, Guid entityId, string name)
     : base(root, entityId)
 {
     _parent = parent;
     _name = name;
 }
示例#4
0
 public Stage(AggregateRoot root, Sprint parent, Guid entityId, string name) : base(root, entityId)
 {
     _parent = parent;
     _name   = name;
 }
示例#5
0
文件: Story.cs 项目: stgolem/Scrumr
 public Story(AggregateRoot parent, Sprint sprint, Guid id, string description)
     : base(parent, id)
 {
     _sprint = sprint;
     _description = description;
 }
示例#6
0
 public Story(AggregateRoot parent, Sprint sprint, Guid id, string description)
     : base(parent, id)
 {
     _sprint      = sprint;
     _description = description;
 }