blob: 82c89b817e98e24e257c55724aaaef267e505f49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using System;
using System.Threading.Tasks;
using API.Database;
using Microsoft.AspNetCore.Mvc;
namespace API.Service
{
public class RoleService
{
private readonly DevHiveContext _context;
public RoleService(DevHiveContext context)
{
this._context = context;
}
public Task<IActionResult> CreatePost(string name)
{
throw new NotImplementedException();
}
public Task<IActionResult> GetPostById(uint postId)
{
throw new NotImplementedException();
}
}
}
|