32 lines
536 B
C#
32 lines
536 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Code.Utils
|
|
{
|
|
public enum FullNameFormat
|
|
{
|
|
FIRST_LAST = 0,
|
|
LAST_FIRST = 1
|
|
}
|
|
public enum DBConnectionType
|
|
{
|
|
MONGO=0,
|
|
ENTITY=1,
|
|
ADO=2
|
|
}
|
|
public enum RejectReason
|
|
{
|
|
OK=0,
|
|
Exception=1,
|
|
MissingTeam=2,
|
|
Other=3,
|
|
ResourceNotFound=4,
|
|
NoTimeAllocationFound=5,
|
|
NoInputRecords=6
|
|
}
|
|
|
|
}
|