NewGaoKaoApi/New_College.Repository/BASE/D_FansDistributionRepositor...

22 lines
532 B
C#

using New_College.IRepository.UnitOfWork;
using New_College.IRepository;
using New_College.Model.Models;
using New_College.Repository.Base;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace New_College.Repository
{
public class D_FansDistributionRepository : BaseRepository<D_FansDistribution>, ID_FansDistributionRepository
{
public D_FansDistributionRepository(IUnitOfWork unitOfWork) : base(unitOfWork)
{
}
}
}