- Bump `UserManager` package to version `1.1.1` in `EnvelopeGenerator.Application.csproj` and `EnvelopeGenerator.Infrastructure.csproj`. - Add reference to `DigitalData.UserManager.Domain` version `3.2.1.0` and `System.ComponentModel.Annotations` version `4.7.0` in `EnvelopeGenerator.CommonServices.vbproj`. - Add reference to `System.Drawing.Common` version `4.7.3` in `EnvelopeGenerator.CommonServices.vbproj`. - Update `UserManager.Domain` package to version `3.2.1` in `EnvelopeGenerator.Domain.csproj`. - Remove unused properties from `EGUser` class in `EGUser.cs`. - Mark `EnvelopeReceiverRepository` as obsolete, suggesting to use `Repository` instead. - Update `packages.config` to include new package versions.
29 lines
665 B
C#
29 lines
665 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel;
|
|
using DigitalData.UserManager.Domain.Entities;
|
|
|
|
#if NETFRAMEWORK
|
|
using System;
|
|
#endif
|
|
|
|
namespace EnvelopeGenerator.Domain.Entities
|
|
{
|
|
[Table("TBDD_USER", Schema = "dbo")]
|
|
public class EGUser : User
|
|
{
|
|
#region FORM_APP
|
|
[NotMapped]
|
|
public bool HasAccess { get; set; }
|
|
|
|
[NotMapped]
|
|
public bool IsAdmin { get; set; }
|
|
|
|
[NotMapped]
|
|
public bool GhostModeActive { get; set; }
|
|
|
|
[NotMapped]
|
|
public string FullName => $"{Prename} {Name}";
|
|
#endregion
|
|
}
|
|
} |