コード例 #1
0
		public object Get(DeployBatchStatusRequest request)
		{
			if(request == null)
			{
				throw new ArgumentNullException("request is null");
			}
			if(string.IsNullOrEmpty(request.Id))
			{
				return _deployRequestManager.GetDeployBatchStatusList(request.BuildListOptions());
			}
			else 
			{
				return _deployRequestManager.GetDeployBatchStatus(request.Id);
			}
		}