After code cleanup

This commit is contained in:
2022-07-09 04:17:38 +00:00
parent aaed4430f1
commit f9baf2b3df
53 changed files with 255 additions and 465 deletions

View File

@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AyaNovaQBI
{
@@ -10,15 +6,15 @@ namespace AyaNovaQBI
/// <summary>
/// DTO object to receive list from server of billable workorders
/// </summary>
internal class WorkOrderAccountingListItem
public class WorkOrderAccountingListItem
{
internal long id { get; set; }
internal long customerId { get; set; }
internal string customerName { get; set; }
internal string workorderStatusName { get; set; }
internal long serial { get; set; }
internal DateTime? serviceDate { get; set; }
internal string color { get; set; }
internal string projectName { get; set; }
public long id { get; set; }
public long customerId { get; set; }
public string customerName { get; set; }
public string workorderStatusName { get; set; }
public long serial { get; set; }
public DateTime? serviceDate { get; set; }
public string color { get; set; }
public string projectName { get; set; }
}
}