Example #1
0
 public bool UpdateDetaliuComanda(CarService.DetaliuComanda detaliuComanda)
 {
     return(base.Channel.UpdateDetaliuComanda(detaliuComanda));
 }
Example #2
0
 public System.Threading.Tasks.Task <bool> UpdateDetaliuComandaAsync(CarService.DetaliuComanda detaliuComanda)
 {
     return(base.Channel.UpdateDetaliuComandaAsync(detaliuComanda));
 }
Example #3
0
 public System.Threading.Tasks.Task <bool> AddMecanicsAsync(CarService.Mecanic[] selectedMecanics, CarService.DetaliuComanda detaliuComanda)
 {
     return(base.Channel.AddMecanicsAsync(selectedMecanics, detaliuComanda));
 }
Example #4
0
 public bool AddMecanics(CarService.Mecanic[] selectedMecanics, CarService.DetaliuComanda detaliuComanda)
 {
     return(base.Channel.AddMecanics(selectedMecanics, detaliuComanda));
 }
Example #5
0
 public System.Threading.Tasks.Task <bool> AddOperatieAsync(CarService.Operatie operatieId, CarService.DetaliuComanda detaliuComanda)
 {
     return(base.Channel.AddOperatieAsync(operatieId, detaliuComanda));
 }
Example #6
0
 public bool AddOperatie(CarService.Operatie operatieId, CarService.DetaliuComanda detaliuComanda)
 {
     return(base.Channel.AddOperatie(operatieId, detaliuComanda));
 }
 /// <inheritdoc />
 /// <summary>
 /// Creates the specified detaliu comanda.
 /// </summary>
 /// <param name="detaliuComanda">The detaliu comanda.</param>
 public void Create(DetaliuComanda detaliuComanda)
 {
     _context.DetaliiComanda.Add(detaliuComanda);
 }