using Infrastructure.Attribute;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ARW.Model.Models.Business;
namespace ARW.Repository.Business
{
///
/// 学生仓储服务
///
[AppService(ServiceLifetime = LifeTime.Transient)]
public class ClassRepository : BaseRepository
{
/*
* 复杂的业务逻辑代码
*/
}
}