12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Models
- {
-
-
-
- public class ViewDelegationInfoAndForeignReceivables
- {
- int dIID;
-
-
-
- public int DIID
- {
- get { return dIID; }
- set { dIID = value; }
- }
- string teamName;
-
-
-
- public string TeamName
- {
- get { return teamName; }
- set { teamName = value; }
- }
- string clientUnit;
-
-
-
- public string ClientUnit
- {
- get { return clientUnit; }
- set { clientUnit = value; }
- }
- string visitDate;
-
-
-
- public string VisitDate
- {
- get { return visitDate; }
- set { visitDate = value; }
- }
- }
- }
|