Beispiel #1
0
        public async Task <IActionResult> CreateTenant([FromBody] Tenant tenant)
        {
            var result = await _tenantStore.CreateTenantAsync(tenant);

            return(Ok(result));
        }