aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Services/RoleService.cs
blob: 202c611351dac14478f0f3dd0bff90312b11ea95 (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
using System;
using System.Threading.Tasks;
using DevHive.Data.Repositories;

namespace DevHive.Services.Services
{
	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();
		}*/
	}
}