HttpPostedFileBase not binding to model
Make sure you've set the enctype
attribute on your form to multipart/form-data
on your form if you want to be able to upload files:
@using (Html.BeginForm("AddFaultType", "Administration", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
...
}