Created
January 25, 2013 13:54
-
-
Save Fodsuk/4634619 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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