11 lines
263 B
C#
11 lines
263 B
C#
using System;
|
|
|
|
namespace xDataService.Interfaces {
|
|
/// <summary>
|
|
/// this service provide Sequential GUID mechanism for Entity Ids ...
|
|
/// </summary>
|
|
public interface IXSequentialGuid {
|
|
Guid GetCurrentGuid ();
|
|
Guid Next ();
|
|
}
|
|
} |