using ERP.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ERP.Dal.Interface { public interface ILicenseGenerateService { Result> GetLicenseKeyList(); Result SaveLicenseKey(LicenseGenerateModel p_LicenseGenerateModel, Guid p_UserId); Result LicenseKeyUsedById(Guid p_LicenseKeyId); } }