コード例 #1
0
        public IActionResult RegisterNewTenant([FromBody] string tenantName)
        {
            if (string.IsNullOrEmpty(tenantName))
            {
                return(BadRequest("TenantName cannot be null or emtpy"));
            }

            _tenantService.RegisterNewTenant(tenantName);

            return(Ok(tenantName));
        }