Skip to content

Instantly share code, notes, and snippets.

@Fodsuk
Created January 25, 2013 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fodsuk/4634619 to your computer and use it in GitHub Desktop.
Save Fodsuk/4634619 to your computer and use it in GitHub Desktop.
public class CardValidationService : ICardValidationService
{
private readonly CallValidationConfiguration _config;
private readonly ICallValidateDataService _callValidateDataService;
private readonly ILogger _logger = LoggerProvider.GetLogger<CardValidationService>();
public CardValidationService(CallValidationConfiguration config, ICallValidateDataService callValidateDataService)
{
_config = config;
_callValidateDataService = callValidateDataService;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment