Exemplo n.º 1
0
 public PunishedUser(PunishedUserEntity entity)
 {
     Id             = entity.Id;
     Nick           = entity.Nick;
     Count          = entity.Count;
     AutoPunishment = new AutoPunishment(entity.AutoPunishmentEntity);
 }
Exemplo n.º 2
0
 public PunishedUser(PunishedUserEntity entity, AutoPunishment autoPunishment)
 {
     Id             = entity.Id;
     Nick           = entity.Nick;
     Count          = entity.Count;
     AutoPunishment = autoPunishment;
 }