using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Application.Services.UMEs { public interface IUMEsAppService { Task ImportUMEs(IFormFileCollection files, int unitId, int uniacid, int groupId); } }