私のWebサービスからクラスにアクセスしています
[WebMethod(EnableSession = true)]
public string fetchAbsentees(string date)
{
string data = string.Empty;
StudentAttendances students = new StudentAttendances(date);
SearchStudents fetchStudents =new SearchStudents(students);
data = jsonSerialize.Serialize(fetchStudents);
}
return data;
}
このコードを実行すると、クラスから値が取得されます。StudentAttendance
クラスにはなどStudentId
と一緒にプロパティattendancestatus
があります....date
StudentAttendance
1 つのパラメーター (StudentIdをSearchStudentClass
受け入れるため) を持つコンストラクターがあります。StudentId
SearchStudents