6593acbc20
Some checks failed
Unit tests / test (push) Failing after 1m1s
Работает пока только для ChangeLog
22 lines
574 B
C#
22 lines
574 B
C#
using DD.Persistence.Client.Clients.Interfaces.Refit;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DD.Persistence.Client;
|
|
|
|
/// <summary>
|
|
/// Интерфейс для фабрики, которая создает refit-клиентов
|
|
/// </summary>
|
|
/// <typeparam name="T"></typeparam>
|
|
public interface IRefitClientFactory<T> where T : IRefitClient
|
|
{
|
|
/// <summary>
|
|
/// Создание refit-клиента
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public T Create();
|
|
}
|