Esempio n. 1
0
 /// <summary>
 /// Updates the name of the protocol localized.
 /// </summary>
 /// <param name="customerId"></param>
 /// <param name="protocolId">The protocol identifier.</param>
 /// <param name="localizedName">Name of the localized.</param>
 /// <returns></returns>
 public Task <CreateUpdateProtocolStatus> UpdateProtocolLocalizedName(
     int customerId,
     Guid protocolId,
     string localizedName
     )
 {
     return(protocolService.UpdateProtocolLocalizedName(customerId, protocolId, localizedName));
 }