using System.Collections.Generic; using System.Threading.Tasks; using Yavsc.Models.Google.Messaging; using Yavsc.Models.Messaging; namespace Yavsc.Services { public interface IGoogleCloudMessageSender { Task NotifyBookQueryAsync( GoogleAuthSettings googlesettings, IEnumerable registrationId, BookQueryEvent ev); Task NotifyEstimateAsync( GoogleAuthSettings googlesettings, IEnumerable registrationId, EstimationEvent ev); } }