public HAMenuId(string menuId, HADto context)
 {
     MenuId  = menuId;
     Context = context;
 }
예제 #2
0
 public HATypeRef(HADto dto, bool nullable, List <string> tags)
 {
     Dto        = dto;
     IsNullable = nullable;
     Tags       = tags;
 }
 public static HATypeRef Ref(HADto dto, bool nullable)
 => new HATypeRef(dto: dto, nullable: nullable);
 public static HATypeDto Dto(HADto dto, bool nullable)
 => new HATypeDto(dto: dto, nullable: nullable);
 public static HATypeRef Ref(HADto dto, bool nullable, List <string> tags)
 => new HATypeRef(dto: dto, nullable: nullable, tags: tags);
예제 #6
0
 public HATypeRef(HADto dto, bool nullable)
 {
     Dto        = dto;
     IsNullable = nullable;
 }