GetRewardsReport() public abstract method

public abstract 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[]
Exemplo n.º 1
0
 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));
 }