Exemplo n.º 1
0
        public Bug AddBug(string description)
        {
            var toAdd = new Bug(BugRepository.GetNextId(), description);

            BugRepository.AddItem(toAdd);
            return(toAdd);
        }