Exemplo n.º 1
0
 public TaskDescribed(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, string description)
 {
     this.TenantId = tenantId;
     this.BacklogItemId = backlogItemId;
     this.TaskId = taskId;
     this.Description = description;
 }
 public TaskVolunteerAssigned(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, string volunteerMemberId)
 {
     this.TenantId = tenantId;
     this.BacklogItemId = backlogItemId;
     this.TaskId = taskId;
     this.VolunteerMemberId = volunteerMemberId;
 }
Exemplo n.º 3
0
 public TaskStatusChanged(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, TaskStatus status)
 {
     this.TenantId = tenantId;
     this.BacklogItemId = backlogItemId;
     this.TaskId = taskId;
     this.Status = status;
 }
Exemplo n.º 4
0
 public TaskRenamed(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, string name)
 {
     this.TenantId = tenantId;
     this.BacklogItemId = backlogItemId;
     this.TaskId = taskId;
     this.Name = name;
 }
 public TaskHoursRemainingEstimated(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, int hoursRemaining)
 {
     this.TenantId = tenantId;
     this.BacklogItemId = backlogItemId;
     this.TaskId = taskId;
     this.HoursRemaining = hoursRemaining;
 }
Exemplo n.º 6
0
 public TaskRemoved(Tenants.TenantId tenantId, BacklogItemId backlogItemId)
 {
     this.TenantId = tenantId;
     this.EventVersion = 1;
     this.OccurredOn = DateTime.UtcNow;
     this.BacklogItemId = backlogItemId;
 }
 public BacklogItemSummarized(Tenants.TenantId tenantId, BacklogItemId backlogItemId, string summary)
 {
     this.TenantId = tenantId;
     this.EventVersion = 1;
     this.OccurredOn = DateTime.UtcNow;
     this.BacklogItemId = backlogItemId;
     this.Summary = summary;
 }
        public BacklogItemCategoryChanged(Tenants.TenantId tenantId, BacklogItemId backlogItemId, string category)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.Category = category;
        }
        public BacklogItemStatusChanged(Tenants.TenantId tenantId, BacklogItemId backlogItemId, BacklogItemStatus status)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.Status = status;
        }
        public BacklogItemStoryPointsAssigned(Tenants.TenantId tenantId, BacklogItemId backlogItemId, StoryPoints storyPoints)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;

            this.BacklogItemId = backlogItemId;
            this.StoryPoints = storyPoints;
        }
Exemplo n.º 11
0
        public BacklogItemCommitted(Tenants.TenantId tenantId, BacklogItemId backlogItemId, Sprints.SprintId sprintId)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.SprintId = sprintId;
        }
        public BacklogItemDiscussionInitiated(Tenants.TenantId tenantId, BacklogItemId backlogItemId, BacklogItemDiscussion discussion)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.Discussion = discussion;
        }
Exemplo n.º 13
0
        public BacklogItemTypeChanged(Tenants.TenantId tenantId, BacklogItemId backlogItemId, BacklogItemType type)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.BacklogItemType = type;
        }
Exemplo n.º 14
0
        public BacklogItemUnscheduled(Tenants.TenantId tenantId, BacklogItemId backlogItemId, Releases.ReleaseId unscheduledReleaseId)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.UnscheduledReleaseId = unscheduledReleaseId;
        }
 public BacklogItemDiscussionRequested(Tenants.TenantId tenantId, ProductId productId, BacklogItemId backlogItemId, bool isRequested)
 {
     this.TenantId = tenantId;
     this.EventVersion = 1;
     this.OccurredOn = DateTime.UtcNow;
     this.ProductId = productId;
     this.BacklogItemId = backlogItemId;
     this.IsRequested = isRequested;
 }
        public BusinessPriorityAssigned(Tenants.TenantId tenantId, BacklogItemId backlogItemId, BusinessPriority businessPriority)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;

            this.BacklogItemId = backlogItemId;
            this.BusinessPriority = businessPriority;
        }
Exemplo n.º 17
0
        public TaskDefined(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, string volunteerMemberId, string name, string description)
        {
            this.TenantId = tenantId;
            this.EventVersion = 1;
            this.OccurredOn = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.TaskId = taskId;
            this.VolunteerMemberId = volunteerMemberId;
            this.Name = name;
            this.Description = description;
        }
Exemplo n.º 18
0
        public TaskDefined(Tenants.TenantId tenantId, BacklogItemId backlogItemId, TaskId taskId, string volunteerMemberId, string name, string description)
        {
            this.TenantId      = tenantId;
            this.EventVersion  = 1;
            this.OccurredOn    = DateTime.UtcNow;
            this.BacklogItemId = backlogItemId;

            this.TaskId            = taskId;
            this.VolunteerMemberId = volunteerMemberId;
            this.Name        = name;
            this.Description = description;
        }
Exemplo n.º 19
0
 public Task(
     TenantId tenantId,
     BacklogItemId backlogItemId,
     TaskId taskId,
     TeamMember teamMember,
     string name,
     string description,
     int hoursRemaining,
     TaskStatus status)
 {
     this.TenantId       = tenantId;
     this.BacklogItemId  = backlogItemId;
     this.TaskId         = taskId;
     this.Volunteer      = teamMember.TeamMemberId;
     this.Name           = name;
     this.Description    = description;
     this.HoursRemaining = hoursRemaining;
     this.Status         = status;
     this.estimationLog  = new List <EstimationLogEntry>();
 }
Exemplo n.º 20
0
        public BacklogItem(
            TenantId tenantId,
            ProductId productId,
            BacklogItemId backlogItemId,
            string summary,
            string category,
            BacklogItemType type,
            BacklogItemStatus backlogItemStatus,
            StoryPoints storyPoints)
        {
            this.BacklogItemId = backlogItemId;
            this.Category      = category;
            this.ProductId     = productId;
            this.Status        = backlogItemStatus;
            this.StoryPoints   = storyPoints;
            this.Summary       = summary;
            this.TenantId      = tenantId;
            this.Type          = type;

            this.tasks = new List <Task>();
        }
 public BacklogItemDiscussionRequested(Tenants.TenantId tenantId, ProductId productId, BacklogItemId backlogItemId, bool isRequested)
 {
     this.TenantId      = tenantId;
     this.EventVersion  = 1;
     this.OccurredOn    = DateTime.UtcNow;
     this.ProductId     = productId;
     this.BacklogItemId = backlogItemId;
     this.IsRequested   = isRequested;
 }