Beispiel #1
0
        public ActionResult Post([FromBody] Models.OrganizationRequest value)
        {
            var result = organizationService.Initialize(value);

            if (result == null)
            {
                return(NotFound());
            }
            else
            {
                return(Ok(result));
            }
        }