31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
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 random = new Random();
|
|
var l = new List<InvoiceableItem>();
|
|
for (int i = 0; i < 10; i++)
|
|
l.Add(new InvoiceableItem { CustomerId = 1, Linked = random.Next(2) == 1, Project = "project blah", ServiceDate = DateTime.Now.ToString("s"), ServiceNumber = (40+i).ToString(), Status = "Waiting to be invoiced and just sitting there otherwise", StatusColor = "FF00FFAA", WorkorderId = 4 });
|
|
|
|
return l;
|
|
}
|
|
|
|
public static List<NameIdItem> GetCustomersWithInvoiceableItems()
|
|
{
|
|
var l = new List<NameIdItem>();
|
|
for (int i = 0; i < 10; i++)
|
|
l.Add(new NameIdItem { Id = i, Name = "Customer " + i.ToString() });
|
|
return l;
|
|
}
|
|
}
|
|
}
|