mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.4 KiB
51 lines
1.4 KiB
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Volo.Abp.Validation;
|
|
|
|
namespace Volo.Abp.TenantManagement.Web.Pages.TenantManagement.Tenants
|
|
{
|
|
public class EditModalModel : TenantManagementPageModel
|
|
{
|
|
[BindProperty]
|
|
public TenantInfoModel Tenant { get; set; }
|
|
|
|
protected ITenantAppService TenantAppService { get; }
|
|
|
|
public EditModalModel(ITenantAppService tenantAppService)
|
|
{
|
|
TenantAppService = tenantAppService;
|
|
}
|
|
|
|
public virtual async Task<IActionResult> OnGetAsync(Guid id)
|
|
{
|
|
Tenant = ObjectMapper.Map<TenantDto, TenantInfoModel>(
|
|
await TenantAppService.GetAsync(id)
|
|
);
|
|
|
|
return Page();
|
|
}
|
|
|
|
public virtual async Task<IActionResult> OnPostAsync()
|
|
{
|
|
ValidateModel();
|
|
|
|
var input = ObjectMapper.Map<TenantInfoModel, TenantUpdateDto>(Tenant);
|
|
await TenantAppService.UpdateAsync(Tenant.Id, input);
|
|
|
|
return NoContent();
|
|
}
|
|
|
|
public class TenantInfoModel
|
|
{
|
|
[HiddenInput]
|
|
public Guid Id { get; set; }
|
|
|
|
[Required]
|
|
[DynamicStringLength(typeof(TenantConsts), nameof(TenantConsts.MaxNameLength))]
|
|
[Display(Name = "DisplayName:TenantName")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|
|
} |