// GET: PostBack calling
        public ActionResult PostBack()
        {
            var model = new DateRangePostBack();

            model.value = "05/28/2017-06/27/2017";
            return(View(model));
        }
 public ActionResult PostBack(DateRangePostBack model)
 {
     return(View(model));
 }