public void CreateBurndown(string name, DateTime startDate, DateTime endDate, decimal moneyToSpend, BurndownType burndownType)
 {
     throw new NotImplementedException();
 }
 public void CreateBurndown(string name, DateTime startDate, DateTime endDate, decimal moneyToSpend, BurndownType burndownType)
 {
     Burndowns.InsertOnSubmit(new Burndown
                                  {
                                      Name = name,
                                      StartDate = startDate,
                                      EndDate = endDate,
                                      MoneyOnStart = moneyToSpend,
                                      BurndownType = burndownType,
                                      IsDeleted = false
                                  });
     SubmitChanges();
 }