我有 5 个不同的应用程序,需要创建相同的发票。
我不想将发票代码放在 5 个应用程序中的每一个中,而是想创建一个中央服务器应用程序(在另一台机器/服务器上运行),它生成发票并发送回发票 wordfile 的链接。
我需要发布一个参数列表,例如:
Public Class Order
Public Property OrderID As Guid
Public Property Count As Integer
End Class
Dim orders As New List(Of Order)
' fill the list
Dim invoiceFilename As String = GoToSomeSeverAndGetInvoice(customerID, orders)
我想过将 MVC 应用程序作为服务器程序,但我看不到如何在控制器中传递类参数“订单”。
你将如何制作中央服务器程序?我需要它尽可能简单:)
提前致谢。