This commit is contained in:
21
AyaNovaQBI/util.cs
Normal file
21
AyaNovaQBI/util.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AyaNovaQBI
|
||||
{
|
||||
internal class util
|
||||
{
|
||||
|
||||
public static List<InvoiceableItem> GetInvoiceableItems()
|
||||
{
|
||||
var l = new List<InvoiceableItem>();
|
||||
for(int i = 0; i < 10; i++)
|
||||
l.Add(new InvoiceableItem { CustomerId = 1, Linked = true, Project = "project blah", ServiceDate = new DateTime(), ServiceNumber = "44", Status = "Waiting to be invoiced", StatusColor = "FF00FFAA", WorkorderId = 4 });
|
||||
|
||||
return l;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user