예제 #1
0
 /// <inheritdoc />
 /// <summary>Updates the specified client.</summary>
 /// <param name="client">The client.</param>
 public void Update(CarService.Client client)
 {
     _context.Clienti.AddOrUpdate(client);
 }
예제 #2
0
파일: proxy.cs 프로젝트: logalex96/.net2
 public System.Threading.Tasks.Task <bool> UpdateClientAsync(CarService.Client client)
 {
     return(base.Channel.UpdateClientAsync(client));
 }
예제 #3
0
 /// <inheritdoc />
 /// <summary>
 /// Creates the specified client.
 /// </summary>
 /// <param name="client">The client.</param>
 public void Create(CarService.Client client)
 {
     _context.Clienti.Add(client);
 }
예제 #4
0
파일: proxy.cs 프로젝트: logalex96/.net2
 public bool UpdateClient(CarService.Client client)
 {
     return(base.Channel.UpdateClient(client));
 }