Exemplo n.º 1
0
 public Silanis.ESL.SDK.DelegationUser Build()
 {
     Silanis.ESL.SDK.DelegationUser result = new Silanis.ESL.SDK.DelegationUser();
     result.Email     = email;
     result.FirstName = firstName;
     result.Id        = id;
     result.LastName  = lastName;
     result.Name      = name;
     return(result);
 }
Exemplo n.º 2
0
 public void AddDelegate(string senderId, Silanis.ESL.SDK.DelegationUser delegationUser)
 {
     Silanis.ESL.API.DelegationUser apiDelegationUser = new DelegationUserConverter(delegationUser).ToAPIDelegationUser();
     apiClient.AddDelegate(senderId, apiDelegationUser);
 }