26 lines
525 B
C#
26 lines
525 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Tanshu.Accounts.Contracts
|
|||
|
{
|
|||
|
public sealed class Constants
|
|||
|
{
|
|||
|
public static Guid CASH_CUSTOMER
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return new Guid("2C716F4B-0736-429A-AD51-610D7C47CB5E");
|
|||
|
}
|
|||
|
}
|
|||
|
public static Guid WAITER
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return new Guid("3ECB3BCE-CBBA-461C-BC16-5823FC075AAA");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|