This commit is contained in:
2022-06-17 20:12:50 +00:00
parent c103f9577d
commit ab28b85e14
23 changed files with 4802 additions and 0 deletions

21
AyaNovaQBI/util.cs Normal file
View 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;
}
}
}