14 lines
250 B
C#
14 lines
250 B
C#
using CC.Yi.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CC.Yi.IDAL
|
|
{
|
|
public partial interface IstudentDal:IBaseDal<student>
|
|
{
|
|
}
|
|
public partial interface IpropDal:IBaseDal<prop>
|
|
{
|
|
}
|
|
} |