Created
April 24, 2020 13:04
-
-
Save ashour/225e006b49904f7bfb0bafea711586b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Heaventure.Data; | |
using System.Web.Mvc; | |
namespace Heaventure.Controllers | |
{ | |
public class HomeController : Controller | |
{ | |
public ActionResult Index() | |
{ | |
var ar = new System.Globalization.CultureInfo("ar"); | |
System.Threading.Thread.CurrentThread.CurrentCulture = ar; | |
System.Threading.Thread.CurrentThread.CurrentUICulture = ar; | |
var model = Constellation.All(); | |
return View(model); | |
} | |
// ... | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment