예제 #1
0
 public static string FetchImageUrl(this IAssetService service, string source, int height, int width)
 {
     return(service.FetchImageUrl(source, new FetchOptions()
     {
         Width = width, Height = height
     }));
 }