using Diligent.WebAPI.Data.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Diligent.WebAPI.Business.Interfaces { public interface ICustomerRepository { Task GetCustomer(string username); Task GetCustomerById(string id); Task AddNotification(Customer c); Task> ReadNotifications(string userId); Task DeleteNotification(Customer c, Notification n); } }