public async Task <IActionResult> GetRecruitingAgreement([FromRoute] Guid organizationId, [FromRoute] Guid recruitingOrganizationId)
        {
            var agreement =
                await _recruitingService.GetAgreement <AgencyOwnerRecruitingAgreementOutput>(_providerAgencyOwner, recruitingOrganizationId);

            return(Ok(agreement));
        }
        public async Task <IActionResult> GetProviderAgreement([FromRoute] Guid organizationId, [FromRoute] Guid providerOrganizationId)
        {
            var results = await _agreementService
                          .GetAgreement <AgencyOwnerRecruitingAgreementOutput>(_recruitingAgencyOwner, providerOrganizationId);

            return(Ok(results));
        }