public ResxTranslationService(
     IResxComparisonService resxComparer,
     IResxAlignmentService resxAligner,
     ITranslationSender translationSender,
     IResxWritingService resxWriter)
 {
     _resxComparer      = resxComparer;
     _resxAligner       = resxAligner;
     _translationSender = translationSender;
     _resxWriter        = resxWriter;
 }
예제 #2
0
 public JsonTranslationService(
     IJsonParsingService jsonParser,
     IJsonComparisonService jsonComparer,
     IJsonWritingService jsonWriter,
     IJsonAlignmentService jsonAligner,
     ITranslationSender sender)
 {
     _jsonParser   = jsonParser;
     _jsonComparer = jsonComparer;
     _jsonWriter   = jsonWriter;
     _jsonAligner  = jsonAligner;
     _sender       = sender;
 }