In the third part of this MVC tutorial we add two new controllers and models with the ability to upload files to our web site. The Room model is pretty simple: public class Room { [Key] public int nr { get; set; } [Required(ErrorMessage = "Deve indicar o piso do quarto")] public int piso { get; set; } [Required(ErrorMessage = "Deve indicar a lotação")] public int lotacao { get; set; } [Required(ErrorMessage = "Deve indicar o estado do quarto")] public bool estado { get; set; } [DataType(DataType.Currency)] [Required(ErrorMessage = "Deve indicar o preço por dia do quarto")] public decimal custo_dia { get; set; } } Just add the controller with E...