aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Services/Services/RoleService.cs
blob: 9077a47f6cc5f1783e30c4727c6638d974d83788 (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
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Threading.Tasks;
using DevHive.Data.Repositories;
using DevHive.Services.Models.Identity.Role;
using Microsoft.AspNetCore.Mvc;

namespace DevHive.Services.Services
{
	public class RoleService
	{
		private readonly DevHiveContext _context;

		public RoleService(DevHiveContext context)
		{
			this._context = context;
		}

		public Task<IActionResult> CreateRole(RoleServiceModel roleServiceModel)
		{
			throw new NotImplementedException();
		}

		public Task<IActionResult> GetRoleById(Guid id)
		{
			throw new NotImplementedException();
		}

		public Task<IActionResult> UpdateRole(RoleServiceModel roleServiceModel)
		{
			throw new NotImplementedException();
		}

		public Task<IActionResult> DeleteRole(Guid id)
		{
			throw new NotImplementedException();
		}
	}
}