BotSharp/src/Infrastructure/BotSharp.Core/Agents/Services/AgentService.cs

14 lines
323 B
C#
Raw Normal View History

2023-06-11 23:46:02 +00:00
namespace BotSharp.Core.Agents.Services;
2023-06-23 04:43:00 +00:00
public partial class AgentService : IAgentService
2023-06-11 23:46:02 +00:00
{
private readonly IServiceProvider _services;
2023-06-17 02:42:35 +00:00
private readonly IUserIdentity _user;
2023-06-17 02:42:35 +00:00
public AgentService(IServiceProvider services, IUserIdentity user)
2023-06-11 23:46:02 +00:00
{
_services = services;
_user = user;
2023-06-11 23:46:02 +00:00
}
}