This commit is contained in:
2022-07-04 18:49:00 +00:00
parent fb358e4533
commit e15ee24fa0
5 changed files with 8 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ namespace AyaNova.Models
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//#### MIRRORED IN QBI !!
public class Customer : ICoreBizObjectModel
{
public long Id { get; set; }

View File

@@ -10,6 +10,8 @@ namespace AyaNova.Models
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//about to make major changes commit trigger here
//MIRRORED IN QBI !!!!
public class Part : ICoreBizObjectModel
{
public long Id { get; set; }

View File

@@ -9,6 +9,8 @@ namespace AyaNova.Models
{
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//### MIRRORED IN QBI!!!!
public class ServiceRate : ICoreBizObjectModel
{

View File

@@ -10,6 +10,8 @@ namespace AyaNova.Models
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//########### MIRRORED IN QBI!!!!
public class TravelRate : ICoreBizObjectModel
{
public long Id { get; set; }

View File

@@ -9,7 +9,7 @@ namespace AyaNova.Models
{
//NOTE: Any non required field (nullable in DB) sb nullable here, i.e. decimal? not decimal,
//otherwise the server will call it an invalid record if the field isn't sent from client
//#### MIRRORED IN QBI !!
public class Vendor : ICoreBizObjectModel
{
public long Id { get; set; }