111,093
社区成员




using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WebApp.Model;
namespace WebApp.IDAL
{
public interface IStudentService
{
IList<StudentEntity> GetEntities();
IList<StudentEntity> GetEntitiesByAge(int age);
IList<StudentEntity> GetEntitiesByName(string name);
IList<StudentEntity> GetEntitiesByGender(string gender);
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WebApp.Model;
namespace WebApp.IDAL
{
public interface IStudentService
{
IList<StudentEntity> GetEntities(string condition);
}
}