Skip to content

Commit c289329

Browse files
authored
Merge pull request #20 from vlad961/main
HOTFIX: added userdto
2 parents bf96fdb + 7aacadb commit c289329

File tree

3 files changed

+73
-2
lines changed

3 files changed

+73
-2
lines changed

dotnet-estimation/dotnet-estimation/Templates/WebAPI/Devon4Net.Application.WebAPI.Implementation/Business/SessionManagement/Controllers/SessionController.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
using Microsoft.AspNetCore.Authorization;
1313

1414
using Devon4Net.Infrastructure.JWT.Common.Const;
15-
using Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dto;
15+
1616
using System.Net;
1717
using Task = System.Threading.Tasks.Task;
1818
using System.Net.WebSockets;
@@ -137,4 +137,4 @@ public async Task<ActionResult> AddTask(long sessionId, [FromBody]TaskDto task)
137137
return BadRequest();
138138
}
139139
}
140-
}
140+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using Devon4Net.Application.WebAPI.Implementation.Domain.Entities;
2+
using System.ComponentModel.DataAnnotations;
3+
4+
namespace Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dtos
5+
{
6+
/// <summary>
7+
/// User definition
8+
/// </summary>
9+
public class UserDto
10+
{
11+
/// <summary>
12+
/// the Id
13+
/// </summary>
14+
public string Id { get; set; }
15+
16+
/// <summary>
17+
/// the Role
18+
/// </summary>
19+
public Role Role { get; set; }
20+
21+
}
22+
}

dotnet-estimation/dotnet-estimation/Templates/WebAPI/Devon4Net.Application.WebAPI.Implementation/Devon4Net.Application.WebAPI.Implementation

+49
Original file line numberDiff line numberDiff line change
@@ -598,17 +598,66 @@
598598
<param name="command"></param>
599599
<returns></returns>
600600
</member>
601+
<member name="M:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Controllers.SessionController.RemoveUserFromSession(System.Int64,System.String)">
602+
<summary>
603+
Remove a Session user
604+
</summary>
605+
<returns></returns>
606+
</member>
607+
<member name="M:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Controllers.SessionController.AddUserToSession(System.Int64,Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dto.UserDto)">
608+
<summary>
609+
Add a Session user
610+
</summary>
611+
<returns></returns>
612+
</member>
601613
<member name="M:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Controllers.StatusController.AddNewEstimation(System.Int64,Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dtos.EstimationDto)">
602614
<summary>
603615
Add a Session Esstimation
604616
</summary>
605617
<returns></returns>
606618
</member>
619+
<member name="T:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dto.UserDto">
620+
<summary>
621+
User definition
622+
</summary>
623+
</member>
624+
<member name="P:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dto.UserDto.Id">
625+
<summary>
626+
the Id
627+
</summary>
628+
</member>
629+
<member name="P:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Dto.UserDto.Role">
630+
<summary>
631+
the Role
632+
</summary>
633+
</member>
607634
<member name="T:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Service.ISessionService">
608635
<summary>
609636
TodoService interface
610637
</summary>
611638
</member>
639+
<member name="M:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Service.ISessionService.AddUserToSession(System.Int64,System.String,Devon4Net.Application.WebAPI.Implementation.Domain.Entities.Role)">
640+
<summary>
641+
Add an User to a given session
642+
</summary>
643+
</member>
644+
<member name="M:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Service.SessionService.RemoveUserFromSession(System.Int64,System.String)">
645+
<summary>
646+
ARemove a specified user from a given session
647+
</summary>
648+
<param name="sessionId"></param>
649+
<param name="userId"></param>
650+
<returns></returns>
651+
</member>
652+
<member name="M:Devon4Net.Application.WebAPI.Implementation.Business.SessionManagement.Service.SessionService.AddUserToSession(System.Int64,System.String,Devon4Net.Application.WebAPI.Implementation.Domain.Entities.Role)">
653+
<summary>
654+
Add an user to a given session
655+
</summary>
656+
<param name="sessionId"></param>
657+
<param name="userId"></param>
658+
<param name="role"></param>
659+
<returns></returns>
660+
</member>
612661
<member name="T:Devon4Net.Application.WebAPI.Implementation.Business.TodoManagement.Controllers.TodoController">
613662
<summary>
614663
TODOs controller

0 commit comments

Comments
 (0)