public SubsonicClient(ISubsonicServer subsonicServer) : base(subsonicServer)
 {
     SubsonicResponse = new SubsonicResponse <Bitmap>(subsonicServer, new ImageFormatFactory());
 }
 public SubsonicClient(ISubsonicServer subsonicServer, IImageFormatFactory <Bitmap> imageFormatFactory) : base(subsonicServer)
 {
     SubsonicResponse = new SubsonicResponse <Bitmap>(subsonicServer, imageFormatFactory);
 }