17 lines
373 B
C#
17 lines
373 B
C#
using Infrastructure.Services.MongoDB;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace HealthcareManager.API.Controllers
|
|
{
|
|
public class ChatController : BaseApiController
|
|
{
|
|
private readonly MongoDbService _mongoDbService;
|
|
|
|
public ChatController(MongoDbService mongoDbService)
|
|
{
|
|
_mongoDbService = mongoDbService;
|
|
}
|
|
|
|
}
|
|
}
|