VideoRentalService.DataFacade.GetRewardsReport C# (CSharp) 메소드

GetRewardsReport() 공개 추상적인 메소드

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
리턴 VideoRentalService.SCustomer[]
        public abstract SCustomer[] GetRewardsReport(
                                            Nullable<global::System.SByte> min_monthly_purchases,
                                            Nullable<global::System.Decimal> min_dollar_amount_purchased,
                                            int count_rewardees);

Usage Example

예제 #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));
 }