public CollectDataQuery(
     IGetRecentProjectsQuery getRecentProjectsQuery,
     IGetCrmAppointmentsQuery getCrmAppointmentsQuery,
     IGetCommitsByEmpIDQuery getCommitsByEmpIDQuery,
     IGetGitHubCommitsQuery getGitHubCommitsQuery,
     IGetTimesheetsQuery getTimesheetsQuery)
 {
     _getRecentProjectsQuery  = getRecentProjectsQuery;
     _getCrmAppointmentsQuery = getCrmAppointmentsQuery;
     _getCommitsByEmpIDQuery  = getCommitsByEmpIDQuery;
     _getGitHubCommitsQuery   = getGitHubCommitsQuery;
     _getTimesheetsQuery      = getTimesheetsQuery;
 }
Exemplo n.º 2
0
 public CrmAppointments(IGetCrmAppointmentsQuery getCrmAppointmentsQuery)
 {
     _getCrmAppointmentsQuery = getCrmAppointmentsQuery;
 }