public void CreateBacklogItem(BackLogItem backlog) { using (var context = new ThemisContext()) { var backlogItem = new BackLogItem() { Name = backlog.Name, SprintId = null, Status = "Not done", Description = backlog.Description, Priority = backlog.Priority, EstimatedTime = backlog.EstimatedTime }; context.BackLogItems.Add(backlogItem); context.SaveChanges(); } }
public AddBackLogItemDomainEvent(Sprint sprint, BackLogItem backLogItem) { Sprint = sprint; BackLogItem = backLogItem; }
public void AddItemBackLog(BackLogItem item) { throw new System.NotImplementedException(); }