Files
SkydiveLogs/Back/skydiveLogs-api.DomainBusiness/Interfaces/IDropZoneService.cs
Sébastien André 143127cd01 Add a cache system on the referential info
+ Add an identity service
2021-04-17 22:17:45 +02:00

26 lines
531 B
C#

using skydiveLogs_api.Domain;
using System.Collections.Generic;
namespace skydiveLogs_api.DomainBusiness.Interfaces
{
public interface IDropZoneService
{
#region Public Methods
void AddNewDz(DropZone dropZone);
bool AddToFavorite(int dzId);
void DeleteDzById(int id);
IEnumerable<DropZone> GetAllDzs();
DropZone GetDzById(int id);
bool RemoveToFavorite(int dzId);
bool UpdateDz(int id, DropZone dropZone);
#endregion Public Methods
}
}