VideoRentalService.RentalService.GetRewardsReport C# (CSharp) Method

GetRewardsReport() public method

public GetRewardsReport ( Nullable min_monthly_purchases, Nullable min_dollar_amount_purchased, int count_rewardees ) : VideoRentalService.SCustomer[]
min_monthly_purchases Nullable
min_dollar_amount_purchased Nullable
count_rewardees int
return VideoRentalService.SCustomer[]
        public SCustomer[] GetRewardsReport(
                                            Nullable<global::System.SByte> min_monthly_purchases,
                                            Nullable<global::System.Decimal> min_dollar_amount_purchased,
                                            int count_rewardees)
        {
            return df.GetRewardsReport(min_monthly_purchases.Value, min_dollar_amount_purchased.Value, count_rewardees);
        }