Files
TaskHybrid/Template.Web/Core/Services/ManageDataService.cs

29 lines
741 B
C#

using System.Linq.Expressions;
using Template.Shared.Core.Dto;
using Template.Shared.Core.Entity;
using Template.Shared.Core.Interface;
namespace Template.Web.Core.Services;
public class ManageDataService : IManageDataService
{
public Task<List<T>> GetTable<T>(Expression<Func<T, bool>>? whereCond = null) where T : new()
{
throw new NotImplementedException();
}
public Task<List<ActivityDTO>> GetActivity(Expression<Func<StbActivity, bool>>? whereCond = null)
{
throw new NotImplementedException();
}
public Task InsertOrUpdate<T>(T objectToSave)
{
throw new NotImplementedException();
}
public Task ClearDb()
{
throw new NotImplementedException();
}
}