/* *代ç 由框架生æˆ,任何更改都å¯èƒ½å¯¼è‡´è¢«ä»£ç 生æˆå™¨è¦†ç›– *Repositoryæä¾›æ•°æ®åº“æ“作,如果è¦å¢žåŠ æ•°æ®åº“æ“作请在当å‰ç›®å½•下Partial文件夹base_routing_tableRepository编写代ç */ using WIDESEA_WMS.IRepositories; using WIDESEA_Core.BaseProvider; using WIDESEA_Core.EFDbContext; using WIDESEA_Core.Extensions.AutofacManager; using WIDESEA_Entity.DomainModels; namespace WIDESEA_WMS.Repositories { public partial class base_routing_tableRepository : RepositoryBase<base_routing_table> , Ibase_routing_tableRepository { public base_routing_tableRepository(VOLContext dbContext) : base(dbContext) { } public static Ibase_routing_tableRepository Instance { get { return AutofacContainerModule.GetService<Ibase_routing_tableRepository>(); } } } }