public string GetImageUrl(string itemId, Model.Dto.ImageOptions options)
        {
            if (string.IsNullOrEmpty(itemId))
            {
                throw new ArgumentNullException("itemId");
            }

            var url = "Items/" + itemId + "/Images/" + options.ImageType;

            return(GetImageUrl(url, options, new QueryStringDictionary()));
        }
 public string GetYearImageUrl(Model.Dto.BaseItemDto item, Model.Dto.ImageOptions options)
 {
     throw new NotImplementedException();
 }
 public string GetYearImageUrl(int year, Model.Dto.ImageOptions options)
 {
     throw new NotImplementedException();
 }
 public string GetUserImageUrl(Model.Dto.UserDto user, Model.Dto.ImageOptions options)
 {
     throw new NotImplementedException();
 }
 public string GetStudioImageUrl(string name, Model.Dto.ImageOptions options)
 {
     throw new NotImplementedException();
 }
 public string[] GetBackdropImageUrls(Model.Dto.BaseItemDto item, Model.Dto.ImageOptions options)
 {
     throw new NotImplementedException();
 }