Example #1
0
        public async Task <byte[]> GetAssemblyBySpecificationId(string specificationId)
        {
            if (string.IsNullOrWhiteSpace(specificationId))
            {
                throw new ArgumentNullException(nameof(specificationId));
            }

            ApiResponse <byte[]> apiResponse = await _apiClient.GetAssemblyBySpecificationId(specificationId);

            return(apiResponse?.Content);
        }