示例#1
0
 public ClientDM(int id, string clientName, string clientlocation, Common.Districts clientDistricts)
 {
     ClientID = id;
     Name     = clientName;
     Location = clientlocation;
     District = clientDistricts;
 }
示例#2
0
 public SiteEngineerDM(int id, string name, string loginName, System.Security.SecureString password, Common.UserType type, Common.Districts districts, double hour, decimal cost)
 {
     UserID         = id;
     Name           = name;
     LoginName      = loginName;
     Password       = password;
     Type           = type;
     Districts      = districts;
     AuthorisedHour = hour;
     AuthorisedCost = cost;
 }