in order to build 1.0.5-rc20-alpha5, an alpha6 * moves again the db context from server lib to main assembly, since migrations are not written correctly in these conditions. * fixing dep graph, while moving as must as possible code from Yavsc to Yavsc.Server * impoved topmost Makefile * cleaned the badly desined, ans system redondant "Action" definiton * reoganized some source code file locations
29 lines
842 B
C#
29 lines
842 B
C#
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Yavsc.Interfaces.Workflow;
|
|
using Yavsc.Models.Google.Messaging;
|
|
using Yavsc.Models.Haircut;
|
|
using Yavsc.Models.Messaging;
|
|
|
|
namespace Yavsc.Services
|
|
{
|
|
public interface IGoogleCloudMessageSender
|
|
{
|
|
Task<MessageWithPayloadResponse> NotifyBookQueryAsync(
|
|
IEnumerable<string> registrationId,
|
|
RdvQueryEvent ev);
|
|
|
|
Task<MessageWithPayloadResponse> NotifyEstimateAsync(
|
|
IEnumerable<string> registrationId,
|
|
EstimationEvent ev);
|
|
|
|
Task<MessageWithPayloadResponse> NotifyHairCutQueryAsync(
|
|
IEnumerable<string> registrationId,
|
|
HairCutQueryEvent ev);
|
|
Task<MessageWithPayloadResponse> NotifyAsync(
|
|
IEnumerable<string> regids,
|
|
IEvent yaev);
|
|
}
|
|
}
|