Pg 43 - Visual Studio 2005?
The service class ProductListExtensionMethods
The Apply method parameters return this error:
public static void Apply(this... Type expected
My code:
using System;
using System.Collections.Generic;
using System.Text;
namespace ASPPatterns.Chap3.Layered.Model
{
public static class ProductListExtensionMethods
{
public static void Apply(this IList<Product> products, IDiscountStrategy discountStrategy)
{
}
}
}
Any ideas?
|