feat: Füge die Spalten ValidFrom und ValidTo zur UserRep-DTO hinzu.
This commit is contained in:
@@ -6,6 +6,8 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
|
|||||||
int? UserId,
|
int? UserId,
|
||||||
int? RepGroupId,
|
int? RepGroupId,
|
||||||
int? GroupId,
|
int? GroupId,
|
||||||
int? RepUserId
|
int? RepUserId,
|
||||||
|
DateTime? ValidFrom,
|
||||||
|
DateTime? ValidTo
|
||||||
) : BaseCreateDto();
|
) : BaseCreateDto();
|
||||||
}
|
}
|
||||||
@@ -9,9 +9,11 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
|
|||||||
int? UserId,
|
int? UserId,
|
||||||
int? GroupId,
|
int? GroupId,
|
||||||
int? RepUserId,
|
int? RepUserId,
|
||||||
int? RepGroupId,
|
int? RepGroupId,
|
||||||
|
DateTime ValidFrom,
|
||||||
|
DateTime ValidTo,
|
||||||
string AddedWho,
|
string AddedWho,
|
||||||
string? ChangedWho,
|
string? ChangedWho,
|
||||||
UserReadDto? User,
|
UserReadDto? User,
|
||||||
GroupReadDto? RepGroup,
|
GroupReadDto? RepGroup,
|
||||||
GroupReadDto? Group,
|
GroupReadDto? Group,
|
||||||
|
|||||||
@@ -6,6 +6,8 @@ namespace DigitalData.UserManager.Application.DTOs.UserRep
|
|||||||
int? UserId,
|
int? UserId,
|
||||||
int? RepGroupId,
|
int? RepGroupId,
|
||||||
int? GroupId,
|
int? GroupId,
|
||||||
int? RepUserId
|
int? RepUserId,
|
||||||
|
DateTime? ValidFrom,
|
||||||
|
DateTime? ValidTo
|
||||||
) : BaseUpdateDto();
|
) : BaseUpdateDto();
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System.ComponentModel.DataAnnotations.Schema;
|
using System.ComponentModel.DataAnnotations.Schema;
|
||||||
using System.ComponentModel.DataAnnotations;
|
|
||||||
|
|
||||||
namespace DigitalData.UserManager.Domain.Entities
|
namespace DigitalData.UserManager.Domain.Entities
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user