public EntityBusinessFacade(Container container, IEntityRepository <T> repository, IEntityEventHandlerFactory handlers)
 {
     _container  = container;
     _repository = repository;
     _handlers   = handlers;
 }
示例#2
0
 public Entity1Facade(Container container, IEntityRepository <ExampleEntity1> repository, IEntityEventHandlerFactory handlers) : base(container, repository, handlers)
 {
 }
 public InstallationEnvironmentFacade(Container container, IEntityRepository <ExampleInstallationEnvironment> repository, IEntityEventHandlerFactory handlers) : base(container, repository, handlers)
 {
 }