2020-06-06 18:29:20 +03:00
|
|
|
|
using Chatbot.Api.Domain.Entities;
|
2020-06-06 19:21:40 +03:00
|
|
|
|
using System;
|
2020-06-06 18:29:20 +03:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Chatbot.Api.Domain.Repositories
|
|
|
|
|
{
|
|
|
|
|
public interface IBotRepository
|
|
|
|
|
{
|
|
|
|
|
Task<Bot[]> GetBots();
|
2020-06-06 19:21:40 +03:00
|
|
|
|
Task<Guid> GetBotId(string botName);
|
2020-06-06 18:29:20 +03:00
|
|
|
|
}
|
|
|
|
|
}
|