Hi Guys,
I was working on a new project which was having a challenge to create fault injection in a running Web API.
Step 1 : Create a model Class name "User"
public class User
{
public int Id { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Gender { get; set; }
}
I was working on a new project which was having a challenge to create fault injection in a running Web API.
Step 1 : Create a model Class name "User"
public class User
{
public int Id { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Gender { get; set; }
}