dengjunjie
4 天以前 23f7d0e0cf31ea6a7cde81bf23ef07091bd4f3a7
1
2
3
4
5
6
7
8
9
10
11
using WIDESEA_Core.BaseRepository;
using WIDESEA_Core.BaseServices;
using WIDESEA_Model.Models;
 
namespace WIDESEA_IStockService
{
    public interface IStockInfoDetailService : IService<Dt_StockInfoDetail>
    {
        IRepository<Dt_StockInfoDetail> Repository { get; }
    }
}