25 lines
850 B
C#
25 lines
850 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using gehGassiApp.Domain.Lookup;
|
|
|
|
namespace gehGassiApp.Core.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Schnittstellenbeschreibung für einen Service der die Verwaltung von DogOwnern ermöglicht
|
|
/// </summary>
|
|
public interface IDogOwnerService
|
|
{
|
|
/// <summary>
|
|
/// Gibt Detailinfos zu einem DogOwner zurück
|
|
/// </summary>
|
|
/// <param name="dogOwnerId">Id des Dogowners</param>
|
|
/// <param name="accessToken">Aktuelles Accesstoken</param>
|
|
/// <param name="token">CancellationToken</param>
|
|
/// <returns>CommunicationResult</returns>
|
|
Task<CommunicationResult<DogOwnerInfo>> GetDogOwnerAsync(string dogOwnerId, string accessToken, CancellationToken token);
|
|
}
|
|
}
|