17 lines
354 B
C#
17 lines
354 B
C#
using DOAN.Model.MES.product;
|
|
using Microsoft.AspNetCore.Http;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Service.MES.product.IService
|
|
{
|
|
public interface IProweekplanManageService
|
|
{
|
|
|
|
void ImportExcel(IFormFile formFile,string username);
|
|
}
|
|
}
|