Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tsi1-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rodrigo Sastre Marotta
tsi1-backend
Merge requests
!2
Forum post postmessage
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Forum post postmessage
forum-post-postmessage
into
master
Overview
2
Commits
4
Pipelines
0
Changes
22
1 unresolved thread
Hide all comments
Merged
Enzo Santangelo Dodera
requested to merge
forum-post-postmessage
into
master
4 years ago
Overview
2
Commits
4
Pipelines
0
Changes
22
1 unresolved thread
Hide all comments
Expand
Se agregaron las entidades, forum, post y postMessages Se agrego autoMapper
0
0
Merge request reports
Viewing commit
8d088cfc
Prev
Next
Show latest version
22 files
+
982
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
22
Search (e.g. *.vue) (Ctrl+P)
8d088cfc
commit
· 8d088cfc
esantangelo
authored
4 years ago
Tsi1.Api/Tsi1.Api/Controllers/ForumController.cs
0 → 100644
+
22
−
0
Options
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