public UserCreateWebsiteDto(UserCreateWebsiteDto dto) { this.Name = dto.Name; this.DisplayName = dto.DisplayName; this.Url = dto.Url; this.WebTemplateId = dto.WebTemplateId; }
public CreateWebsiteDto(string userId, UserCreateWebsiteDto dto) : base(dto) { this.Accounts = new List <AddWebsiteAccountDto>() { new AddWebsiteAccountDto() { AccessLevels = new List <string>() { AccessLevels.Owner.ToString() }, AccountId = userId } }; }