| Deran Schilling, Learner |
the App_Code folder ( I’m calling mine DefaultPage ) Inherit the DefaultPage from BasePage Create a new Class file called SampleEmployeeView and make it look like this: public class SampleEmployeeView
{
[Required("Id is Required.")]
public int Id { get; set; }
[Required("First Name is Required.")]
public string FirstName { get; set; }
public string LastName { get; set; }
public string EmailAddress { get; set; }
{
[Required("Id is Required.")]
public int Id { get; set; }
[Required("First Name is Required.")]
public string FirstName { get; set; }
public string LastName { get; set; }
public string EmailAddress { get; set; }




