843d644154
Fixed error were unprinted bill was not removed from table when voided.
12 lines
338 B
C#
12 lines
338 B
C#
namespace Tanshu.Accounts.Entities
|
|
{
|
|
public class FoodTable
|
|
{
|
|
public virtual int FoodTableID { get; set; }
|
|
public virtual string Name { get; set; }
|
|
public virtual string Location { get; set; }
|
|
public virtual string Status { get; set; }
|
|
public virtual int VoucherID { get; set; }
|
|
}
|
|
}
|