diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-14 23:29:14 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-14 23:29:14 +0200 |
| commit | dee2e37a4a8759108390c664e06bf147b8385cbf (patch) | |
| tree | bd65fe5649731a55aa6f1d8b48d53d89032fb8be /src/DevHive.Services/Services/RoleService.cs | |
| parent | 1ccdefdac025b1b986ad2bd0bc3eda7505d6e7c3 (diff) | |
| download | DevHive-dee2e37a4a8759108390c664e06bf147b8385cbf.tar DevHive-dee2e37a4a8759108390c664e06bf147b8385cbf.tar.gz DevHive-dee2e37a4a8759108390c664e06bf147b8385cbf.zip | |
Stabalized project for compilation. Next step after init architecture
Diffstat (limited to 'src/DevHive.Services/Services/RoleService.cs')
| -rw-r--r-- | src/DevHive.Services/Services/RoleService.cs | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/DevHive.Services/Services/RoleService.cs b/src/DevHive.Services/Services/RoleService.cs new file mode 100644 index 0000000..202c611 --- /dev/null +++ b/src/DevHive.Services/Services/RoleService.cs @@ -0,0 +1,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(); + }*/ + } +} |
