public CollectDataQuery(
     IGetRecentProjectsQuery getRecentProjectsQuery,
     IGetCrmAppointmentsQuery getCrmAppointmentsQuery,
     IGetCommitsByEmpIDQuery getCommitsByEmpIDQuery,
     IGetGitHubCommitsQuery getGitHubCommitsQuery,
     IGetTimesheetsQuery getTimesheetsQuery)
 {
     _getRecentProjectsQuery  = getRecentProjectsQuery;
     _getCrmAppointmentsQuery = getCrmAppointmentsQuery;
     _getCommitsByEmpIDQuery  = getCommitsByEmpIDQuery;
     _getGitHubCommitsQuery   = getGitHubCommitsQuery;
     _getTimesheetsQuery      = getTimesheetsQuery;
 }
 public RecentProjects(IGetRecentProjectsQuery getRecentProjectsQuery)
 {
     _getRecentProjectsQuery = getRecentProjectsQuery;
 }