Initializes a new instance of the 
RateCardFinder class.
Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As List(Of RateCard), _
   ByVal  As Rates, _
   ByVal  As Boolean, _
   ByVal  As List(Of RateParamLimit), _
   ByVal  As Boolean _
)
             
        
            
            'Usage
 
Dim cards As List(Of RateCard)
Dim parent As Rates
Dim isEmployerRatecard As Boolean
Dim limits As List(Of RateParamLimit)
Dim findExactly As Boolean
 
Dim instance As New RateCardFinder(cards, parent, isEmployerRatecard, limits, findExactly)
             
        
            
        
            
            public RateCardFinder( 
    : List;
    : Rates;
    : Boolean;
    : List;
    : Boolean
); 
             
        
            
            public function RateCardFinder( 
    : List,
    : Rates,
    : boolean,
    : List,
    : boolean
);
             
        
            
        
            
        
             
        
            Parameters
- cards
- The cards.
- parent
- The parent.
- isEmployerRatecard
- if set to true[is employer ratecard].
- limits
- The limits.
- findExactly
- if set to true[find exactly].
 
            
            
            
            
            
            
            
            
            
            
            
            See Also