Skip to content
Snippets Groups Projects

Forum post postmessage

Merged Enzo Santangelo Dodera requested to merge forum-post-postmessage into master
1 unresolved thread
22 files
+ 982
0
Compare changes
  • Side-by-side
  • Inline
Files
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Tsi1.BusinessLayer.Interfaces;
namespace Tsi1.Api.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class ForumController : ControllerBase
{
private readonly IForumService _forumService;
public ForumController(IForumService forumService)
{
_forumService = forumService;
}
}
}
Loading