public CifBelongsToViewComponent(IBaseAsyncRepo <CustData> custData,
                                  IBaseAsyncRepo <PrjVelocity1> veloc1,
                                  IBaseAsyncRepo <PrjVelocity2> veloc2,
                                  IBaseAsyncRepo <PrjHelix1> helix1
                                  )
 {
     _custData = custData;
     _veloc1   = veloc1;
     _veloc2   = veloc2;
     _helix1   = helix1;
 }
Esempio n. 2
0
 public BoxController(IBaseAsyncRepo <Box> baseAsyncBoxRepo,
                      IBaseAsyncRepo <BoxCreator> baseAsyncBoxCreatorRepo,
                      IHttpContextAccessor httpContextAccessor,
                      ILogger <Box> logger,
                      IGetObjectType getObjectType)
 {
     this.baseAsyncBoxRepo        = baseAsyncBoxRepo;
     this.baseAsyncBoxCreatorRepo = baseAsyncBoxCreatorRepo;
     this.httpContextAccessor     = httpContextAccessor;
     this.logger        = logger;
     this.getObjectType = getObjectType;
 }
 public CustomerController(
     IBaseAsyncRepo <CustData> baseAsyncCustDataRepo,
     IBaseAsyncRepo <PrjHelix1> baseAsyncPrjHelix1Repo,
     IBaseAsyncRepo <PrjVelocity1> baseAsyncPrjVelocity1Repo,
     IBaseAsyncRepo <PrjVelocity2> baseAsyncPrjVelocity2Repo
     )
 {
     this.baseAsyncCustDataRepo     = baseAsyncCustDataRepo;
     this.baseAsyncPrjHelix1Repo    = baseAsyncPrjHelix1Repo;
     this.baseAsyncPrjVelocity1Repo = baseAsyncPrjVelocity1Repo;
     this.baseAsyncPrjVelocity2Repo = baseAsyncPrjVelocity2Repo;
 }
Esempio n. 4
0
 public FolderController(IBaseAsyncRepo <Folder> baseAsyncFolderRepo,
                         IBaseAsyncRepo <CustData> baseAsyncCustDataRepo,
                         IBaseAsyncRepo <CustAccData> baseAsyncCustAccRepo,
                         IBaseAsyncRepo <CustRelData> baseAsyncCustRelRepo,
                         IBaseAsyncRepo <PrjHelix1> baseAsyncHelix1,
                         IBaseAsyncRepo <PrjVelocity1> baseAsyncVelocity1,
                         IBaseAsyncRepo <PrjVelocity2> baseAsyncVelocity2
                         )
 {
     this.baseAsyncFolderRepo   = baseAsyncFolderRepo;
     this.baseAsyncCustDataRepo = baseAsyncCustDataRepo;
     this.baseAsyncCustAccRepo  = baseAsyncCustAccRepo;
     this.baseAsyncCustRelRepo  = baseAsyncCustRelRepo;
     this.baseAsyncHelix1       = baseAsyncHelix1;
     this.baseAsyncVelocity1    = baseAsyncVelocity1;
     this.baseAsyncVelocity2    = baseAsyncVelocity2;
 }