15 lines
357 B
C#
15 lines
357 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LolDataRequestLib
|
|
{
|
|
public interface IDataRequest
|
|
{
|
|
DataTable 데이터요청(DBDefine.요청데이터분류 업데이트된데이터분류, List<DataTable> 업데이트된데이터);
|
|
}
|
|
}
|