Exemplo n.º 1
0
        public void Delete(Guid id)
        {
            DeleteRentItemCommand deleteRentItemCommand = new DeleteRentItemCommand(id);

            QueueSender.Send(deleteRentItemCommand);
        }
 public void Handle(DeleteRentItemCommand command)
 {
     _RentItemService.Delete(command.Id);
     _RentItemService.Complete();
 }