public async Task AddNotificationAsync(string title, string imageUrl, string text) { await growlNotifiactions.AddNotificationAsync(new Notification { ImageUrl = imageUrl, Message = text, Title = title }); }
public Task AddNotificationAsync(string title, string imageUrl, string text) { return(_growlNotifiactions.AddNotificationAsync(new ViewModel.Notification { ImageUrl = imageUrl, Message = text, Title = title })); }