I have an Angular front end that sends back JSON to an MVC back end.  All dates are converted in JS, using moment() to ISO format before being sent i.e. StartDate: 2015-02-17T15:06:12.180Z
For some reason MVC does not treat these as being in UTC and will convert them to local time. One thing I do use though is MVC's ability to automatically parse JSON into POCOs. My method signature is as follows:
[HttpPost]
public ActionResult AddSchedule(Schedule schedule)
How can I make MVC treat dates properly?