using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace GreenTree.Maschinenbestellungen.Core.Extension
{
public static class GuidExtension
{
///
/// Converts the GUID to a short version
///
/// The GUID object.
/// The first part until the first hyphen of the regular GUID.
public static string ToShortString(this Guid guid)
{
return guid.ToString().Split('-')[0];
}
}
}