public IActionResult CreateRegion(string content, string type, string region)
 {
     if (content == "page")
     {
         return(Ok(_service.CreatePageRegion(type, region)));
     }
     else if (content == "post")
     {
         return(Ok(_service.CreatePostRegion(type, region)));
     }
     else if (content == "site")
     {
         return(Ok(_service.CreateSiteRegion(type, region)));
     }
     return(NotFound());
 }