You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
439 B
22 lines
439 B
using System;
|
|
using HeartTrack.Models;
|
|
|
|
namespace HeartTrack.Services.ReportDataService
|
|
{
|
|
public interface IReportDataService
|
|
{
|
|
public Task<List<Report>> getAllReports();
|
|
|
|
public Task SaveAllReports(List<Report> list);
|
|
|
|
public Task AddReport(Report u);
|
|
|
|
public Task RemoveReport(Report u);
|
|
|
|
public Task UpdateReport(Report u);
|
|
|
|
public Task<Report> getReportById(int id);
|
|
}
|
|
}
|
|
|