/// <inheritdoc /> /// <summary> /// Creates the specified operate. /// </summary> /// <param name="operate">The operate.</param> public void Create(Operatie operate) { _context.Operatii.Add(operate); }
public System.Threading.Tasks.Task <bool> DeleteOperatieAsync(CarService.Operatie operatie) { return(base.Channel.DeleteOperatieAsync(operatie)); }
public bool DeleteOperatie(CarService.Operatie operatie) { return(base.Channel.DeleteOperatie(operatie)); }
public System.Threading.Tasks.Task <bool> AddOperatieAsync(CarService.Operatie operatieId, CarService.DetaliuComanda detaliuComanda) { return(base.Channel.AddOperatieAsync(operatieId, detaliuComanda)); }
public bool AddOperatie(CarService.Operatie operatieId, CarService.DetaliuComanda detaliuComanda) { return(base.Channel.AddOperatie(operatieId, detaliuComanda)); }
public bool CreateOperatie(CarService.Operatie operatie) { return(base.Channel.CreateOperatie(operatie)); }