public CartModel(ItemDTO i, int id) : this() { item = i; this.id = id; }
public CartModel() { item = new ItemDTO(); }