public DefaultController(IConstructUserInput constructInput, IValidateUrl validate,
                          IDbService storage, IConvertUrl convert)
 {
     _constructInput = constructInput;
     _validateUrl    = validate;
     _convertUrl     = convert;
     _urlStorage     = storage;
 }
Beispiel #2
0
 public ValidateUrlTest()
 {
     constructUserInput = new ConstructUserUrlInput();
     validate           = new ValidateUrl();
 }