public IActionResult AddClient([FromBody] ClientDTO C) { var client = _mapper.Map <Client>(C); _context.AddClient(client); return(Ok()); }