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 CustomerRepository:BaseRepository,ICustomerRepository { public CustomerRepository(): base(DataContext.Db) { } } }