nettoyages

vnext
Paul Schneider 8 years ago
parent 8343abd2b4
commit 9342d48c9d
3 changed files with 3 additions and 4 deletions

@ -14,7 +14,6 @@ using Microsoft.Data.Entity;
using System;
using PayPal.PayPalAPIInterfaceService;
using System.Collections.Generic;
using System.IO;
using Yavsc.Helpers;
using Yavsc.ViewModels.Calendar;
using System.Net;

@ -12,6 +12,7 @@ using System.Net.Http;
using Microsoft.AspNet.Identity;
using Yavsc.Models;
using Yavsc.Models.Google.Messaging;
using System.Collections.Generic;
namespace Yavsc.Services
{
@ -30,14 +31,14 @@ namespace Yavsc.Services
/// <c>bool somethingsent = (response.failure == 0 &amp;&amp; response.success > 0)</c>
/// </returns>
public async Task<MessageWithPayloadResponse>
NotifyAsync(GoogleAuthSettings googleSettings, string registrationId, YaEvent ev)
NotifyAsync(GoogleAuthSettings googleSettings, IEnumerable<string> registrationIds, YaEvent ev)
{
MessageWithPayloadResponse response;
try
{
using (var web = new HttpClient())
{
response = await web.NotifyEvent(googleSettings, registrationId, ev);
response = await web.NotifyEvent(googleSettings, registrationIds, ev);
}
}
catch (WebException ex)

@ -19,7 +19,6 @@ using Microsoft.AspNet.Diagnostics;
using Microsoft.AspNet.FileProviders;
using Microsoft.AspNet.Hosting;
using Microsoft.AspNet.Http;
using Microsoft.AspNet.Http.Authentication;
using Microsoft.AspNet.Identity;
using Microsoft.AspNet.Identity.EntityFramework;
using Microsoft.AspNet.Localization;

Loading…