fcatae / Arda

Arda is an open source tool designed to manage team workloads.
42 stars 18 forks source link

[Kanban] AppointmentRepository.GetAllAppointments returns zero TE #48

Closed fcatae closed 7 years ago

fcatae commented 7 years ago
            var response = (from a in _context.Appointments
                            join w in _context.WorkloadBacklogs on a.AppointmentWorkload.WBID equals w.WBID
                            orderby a.AppointmentDate descending
                            select new AppointmentViewModel
                            {
                                _AppointmentID = a.AppointmentID,
                                _AppointmentWorkloadWBID = a.AppointmentWorkload.WBID,
                                _WorkloadTitle = w.WBTitle,
                                _AppointmentDate = a.AppointmentDate,
                                _AppointmentHoursDispensed = a.AppointmentHoursDispensed,
                                _AppointmentUserUniqueName = a.AppointmentUser.UniqueName
                            }).ToList();
fcatae commented 7 years ago

Closing as by design.

T&E is not used.