TheAirline.Models.Routes.Route.SetRouteInvoice C# (CSharp) Method

SetRouteInvoice() public method

public SetRouteInvoice ( Invoice type, int year, int month, int day, double amount ) : void
type Invoice
year int
month int
day int
amount double
return void
        public void SetRouteInvoice(Invoice.InvoiceType type, int year, int month, int day, double amount)
        {
            Invoices.AddInvoice(type, year, month, day, amount);
        }