IGuidGenerator.cs 247 B

123456789101112131415
  1. using System;
  2. namespace Abp
  3. {
  4. /// <summary>
  5. /// Used to generate Ids.
  6. /// </summary>
  7. public interface IGuidGenerator
  8. {
  9. /// <summary>
  10. /// Creates a GUID.
  11. /// </summary>
  12. Guid Create();
  13. }
  14. }