public async Task <ActionResult <AddDeliveryAddressModel> > PostDelivery(AddDeliveryAddressModel model)
 {
     _context.AddDeliveryAddress(model);
     return(CreatedAtAction("GetAllDeliveries", new { id = model.Id }, model));
 }