modified all admin UIs to position action buttons on the left side of grids and implemented ActionDialog throughout rather than dedicated delete components
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface IScheduleLogRepository
|
||||
{
|
||||
IEnumerable<ScheduleLog> GetScheduleLogs();
|
||||
ScheduleLog AddScheduleLog(ScheduleLog ScheduleLog);
|
||||
ScheduleLog UpdateScheduleLog(ScheduleLog ScheduleLog);
|
||||
ScheduleLog GetScheduleLog(int ScheduleLogId);
|
||||
void DeleteScheduleLog(int ScheduleLogId);
|
||||
}
|
||||
}
|
14
Oqtane.Server/Repository/Interfaces/IScheduleRepository.cs
Normal file
14
Oqtane.Server/Repository/Interfaces/IScheduleRepository.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System.Collections.Generic;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
{
|
||||
public interface IScheduleRepository
|
||||
{
|
||||
IEnumerable<Schedule> GetSchedules();
|
||||
Schedule AddSchedule(Schedule Schedule);
|
||||
Schedule UpdateSchedule(Schedule Schedule);
|
||||
Schedule GetSchedule(int ScheduleId);
|
||||
void DeleteSchedule(int ScheduleId);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user