You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
448 B

using System.Collections.Generic;
using System.Threading.Tasks;
using Win_in.Sfs.Shared.Application.Contracts;
namespace Win_in.Sfs.Label.Application.Contracts;
public interface ILabelDefinitionAppService : ISfsCrudAppService<LabelDefinitionDTO, SfsLabelRequestInputBase, LabelDefinitionEditInput>
{
Task<string> GenerateAsync(string code, string timeStr);
Task<List<string>> GenerateManyAsync(string code, string timeStr, int count);
}