Files
Microsoft.SelfService.Porta…/Interfaces/IDeploymentInterface.cs
2026-04-15 15:02:32 +02:00

18 lines
537 B
C#

using Microsoft.SelfService.Portal.Core.API.Models;
namespace Microsoft.SelfService.Portal.Core.API.Interfaces
{
public interface IDeploymentInterface
{
ICollection<DeploymentModel> GetDeployments();
DeploymentModel GetDeploymentById(Guid Id);
bool AddDeploymentById(DeploymentModel deployment);
bool DeleteDeploymentById(DeploymentModel deployment);
bool EditDeploymentById(DeploymentModel deployment);
bool CheckDeploymentById(Guid Id);
bool SaveChanges();
}
}