Poszukiwacz/Serwer/Serwer.Infrastructure/Services/IHistoryService.cs

16 lines
325 B
C#
Raw Permalink Normal View History

2021-01-09 14:44:14 +01:00
using Serwer.Core.Domain;
2021-01-16 13:59:11 +01:00
using Serwer.Infrastructure.DTO;
2021-01-09 14:44:14 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serwer.Infrastructure.Services
{
public interface IHistoryService
{
2021-01-16 13:59:11 +01:00
Task<UserHistoryDto> GetAsync(Guid userId);
2021-01-09 14:44:14 +01:00
}
}