I have a partial view:
@model IEnumerable<ASP.Models.Staff>  
<select class="form-control">
    @foreach (var item in Model)
    {
        <option>@item.Time</option>
    }
</select>
How can I pass @item.Time to another view in same controller ?
 
    