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.
38 lines
902 B
38 lines
902 B
using Model;
|
|
using Model.Repository;
|
|
using Shared;
|
|
|
|
namespace StubAPI;
|
|
|
|
public class ActivityService: IActivityRepository
|
|
{
|
|
public async Task<IEnumerable<Activity>> GetActivities(int index, int count, ActivityOrderCriteria criteria, bool descending = false)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task<Activity?> GetActivityByIdAsync(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task<Activity?> AddActivity(Activity activity)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task<Activity?> UpdateActivity(int id, Activity activity)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task<bool> DeleteActivity(int id)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public async Task<int> GetNbItems()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |