using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using WMS.Entity.Context;
|
using WMS.Entity.SysEntity;
|
using WMS.IDAL.ISysInterface;
|
|
namespace WMS.DAL.SysInfrastructure
|
{
|
public class PalletsRepository:BaseRepository<SysPallets>,IPalletsRepository
|
{
|
public static readonly DataContext Db = new DataContext();
|
public PalletsRepository() : base(DataContext.Db)
|
{
|
}
|
}
|
}
|