Ejemplo n.º 1
0
 public PopulationManager(
     IReadOnlyRepository <string> repo, IMapper mapper, ILogger logger, IAuthManager <V_MyView, string> auth,
     IPopulationSpecificationProvider specs)
 {
     this.Repo   = repo;
     this.Mapper = mapper;
     this.Logger = logger;
     this.Auth   = auth;
     this.Specs  = specs;
 }
 public PopulationController(IBaseManager <V_MyView, string> manager, IPopulationSpecificationProvider specs) : base(manager)
 {
     this.Specs = specs;
 }