SurveyVista/Services/Interaces/INewsLetterRepository.cs
2024-04-05 17:27:17 +02:00

19 lines
336 B
C#

using Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Services.Interaces
{
public interface INewsLetterRepository
{
List<Subscription> GetAll();
Subscription GetById(int id);
void Delete(int id);
}
}