I have a class declaration that looks like this:
public class BlueFinApiClient : IBlueFinApiClient
I am trying to turn this into a generic class and I have changed this declaration to:
public class BlueFinApiClient<T> : IBlueFinApiClient<T> where T :
SREDApiRequest, BlueFinApiRequest , new()
But I cannot seem to get past this error:
The class type constraint 'SPS.CardDecryption.Engine.KSNDecryption.BlueFin.BlueFinApiRequest' must come before any other constraints
I am just failing to see what am I doing wrong in the declaration.