// Create Rent
 public void Create(Rent rent)
 {
     rentService.Create(rent);
 }
Exemplo n.º 2
0
        public ActionResult <Rent> Create(Rent rent)
        {
            _context.Create(rent);

            return(CreatedAtRoute("GetRent", new { id = rent.Id.ToString() }, rent));
        }
Exemplo n.º 3
0
 public IActionResult Post(Rent rent)
 {
     return(Ok(_rentService.Create(rent)));
 }