Beispiel #1
0
        public ProductsController(IGenericRespository <Product> productsRepo,
                                  IGenericRespository <ProductBrand> productBrandRepo, IGenericRespository <ProductType> productTypeRepo,
                                  IMapper mapper)
        {
            _productTypeRepo  = productTypeRepo;
            _productBrandRepo = productBrandRepo;
            _productsRepo     = productsRepo;
            _mapper           = mapper;

            //new instance
        }
Beispiel #2
0
 public RequirementService(IGenericRespository repo)
 {
     this._repo = repo;
 }
Beispiel #3
0
 public StatusService(IGenericRespository repo)
 {
     this._repo = repo;
 }
Beispiel #4
0
 public ProjectService(IGenericRespository repo)
 {
     this._repo = repo;
 }
Beispiel #5
0
 public MemberController(IGenericRespository <Member> memberRepo, IGenericRespository <Product> productRepo)
 {
     this._memberRepository  = memberRepo;
     this._productRepository = productRepo;
 }
Beispiel #6
0
 public SprintService(IGenericRespository repo)
 {
     this._repo = repo;
 }
Beispiel #7
0
 public TaskService(IGenericRespository repo)
 {
     this._repo = repo;
 }