Esempio n. 1
0
 public async Task UpdateInfographicAsync(Infographic infographic,
                                          Element[] content,
                                          bool?publish       = null,
                                          string publishMode = null,
                                          string password    = null,
                                          string title       = null,
                                          int?width          = null,
                                          string copyright   = null)
 {
     await UpdateInfographicAsync(infographic.Id, infographic.ThemeId, content != null?JsonConvert.SerializeObject(content) : null, publish, publishMode, password, title, width, copyright);
 }
Esempio n. 2
0
 public async Task UpdateInfographicAsync(Infographic infographic,
                                          string content     = null,
                                          bool?publish       = null,
                                          string publishMode = null,
                                          string password    = null,
                                          string title       = null,
                                          int?width          = null,
                                          string copyright   = null)
 {
     await UpdateInfographicAsync(infographic.Id, infographic.ThemeId, content, publish, publishMode, password, title, width, copyright);
 }