public async Task <IActionResult> CreateCarnetType([FromBody] CarnetType type)
 {
     _carnetService.Save(type);
     return(Ok());
 }