Beispiel #1
0
 //Update Client Information
 public void Update(Client clientInfo)
 {
     if (clientInfo == null)
     {
         throw new ArgumentNullException("clientInfo");
     }
     // DalHelper.UpdateUser(clientInfo);
     ClientDbHelper.UpdateClientInfo(clientInfo);
 }
Beispiel #2
0
 public void RetriveClientInfo()
 {
     _client = ClientDbHelper.GetClient();
 }