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.

35 lines
752 B

1 year ago
using System;
using System.Collections.Generic;
namespace CK.SCP.Models.UniApiEntity
{
public interface IDataTable:ITable
{
DateTime? CreateTime { get; set; }
string CreateUser { get; set; }
DateTime? UpdateTime { get; set; }
string UpdateUser { get; set; }
}
public interface IInterfaceGetNew
{
List<IControlTable> GetNewCtrlList(UniApiEntities db);
}
public interface IInterfaceRead
{
ITable Read(UniApiEntities db, string seq);
List<ITable> ListRead(UniApiEntities db, string seq);
}
public interface IInterfaceWrite
{
int Write(UniApiEntities db);
int ListWrite(UniApiEntities db, List<ITable> dataList);
}
}