Skip to content
Permalink
bb59370f43
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (24 sloc) 679 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TeamDBAwesome.Models
{
public class Invoice
{
public int invoiceId { get; set; }
public int customerId { get; set; }
public DateTime invoiceDate { get; set; }
public string address { get; set; }
public string city { get; set; }
public string state { get; set; }
public string country { get; set; }
public string post { get; set; }
public float total { get; set; }
public Payment payment { get; set; }
public Invoice()
{
payment = new Payment();
}
}
}