예제 #1
0
    public CustomerOnlineManager(Uri crmOrganizationUri)
    {
        if (crmOrganizationUri == null)
        {
            throw new ArgumentNullException(nameof(crmOrganizationUri), "Can not be null or empty.");
        }

        _service = ManagerHelper.GetCrmOrganizationServiceProxy(crmOrganizationUri);
    }