initial commit
This commit is contained in:
18
Interfaces/IRunbookInterface.cs
Normal file
18
Interfaces/IRunbookInterface.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Microsoft.SelfService.Portal.Core.API.Models;
|
||||
|
||||
namespace Microsoft.SelfService.Portal.Core.API.Interfaces
|
||||
{
|
||||
public interface IRunbookInterface
|
||||
{
|
||||
ICollection<RunbookModel> GetRunbooks();
|
||||
|
||||
RunbookModel GetRunbookById(Guid Id);
|
||||
bool AddRunbookById(RunbookModel runbook);
|
||||
bool EditRunbookById(RunbookModel runbook);
|
||||
|
||||
bool CheckRunbookById(Guid Id);
|
||||
bool CheckRunbookByName(string Name);
|
||||
|
||||
bool SaveChanges();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user