i have pure an interface like below
public interface IPure
{
Array GetEmployee(int employeeId);
DataSet GetAllProducts();
List<string> GetAllSubCategoryNames();
double AverageSubTotalFromHeaders();
}
How can i add contract attributes programaticly my interface at runtime?