I have this code for get date picker range
<div class="col-md-8">
<label class="m-t-20">Date Range Pick</label>
<input class="form-control input-daterange-datepicker" type="text" name="daterange" value="01/01/2015 - 01/31/2015">
</div>
and I have 2 properties in my models :
How can I get both of 2 entrance for input , I need both of them:
ChefFoodPriceFromDate
and
ChefFoodPriceToDate
public DateTime ChefFoodPriceFromDate { get; set; }
public DateTime ChefFoodPriceToDate { get; set; }