Ejemplo n.º 1
0
 public void Update(HolidayShutdown period) => _holidayShutdownsRepository.Update(period);
Ejemplo n.º 2
0
 public void Delete(HolidayShutdown period) => _holidayShutdownsRepository.Delete(period);
Ejemplo n.º 3
0
 public IActionResult Post([FromBody] HolidayShutdown period)
 {
     _holidayShutdownService.Update(period);
     return(new NoContentResult());
 }