11 lines
350 B
C#
11 lines
350 B
C#
using System.Threading.Tasks;
|
|
using _0_Framework.Domain;
|
|
using AccountManagement.Application.Contracts.TaskSchedule;
|
|
|
|
namespace AccountManagement.Domain.TaskScheduleAgg;
|
|
|
|
public interface ITaskScheduleRepository : IRepository<long, TaskSchedule>
|
|
{
|
|
Task<TaskScheduleDetailsViewModel> GetDetails(long id);
|
|
void Remove(TaskSchedule entity);
|
|
} |