public static CustomerDTO GetItem(string strUserName, string strUserPassword) { var user = FakeUsers.SingleOrDefault(x => x.UserName == strUserName && x.UserPassword == strUserPassword); return(user); }