public TimeSpend GetByID(int id) { var timeSpend = timeSpendDao.GetById(id); timeSpend.Task = taskDao.GetById(timeSpend.Task.ID); return(timeSpend); }
public TimeSpend GetByID(int id) { var timeSpend = timeSpendDao.GetById(id); if (timeSpend != null) { timeSpend.Task = taskDao.GetById(timeSpend.Task.ID); } return(timeSpend); }