public CompanyRepository(SWDSlicingPieContext context)
 {
     _context = context;
 }
Ejemplo n.º 2
0
 public AccountRepository(SWDSlicingPieContext context)
 {
     _context = context;
 }
Ejemplo n.º 3
0
 public ProjectRepository(SWDSlicingPieContext context)
 {
     _context = context;
 }
 public AccountsController(SWDSlicingPieContext context, IAccountService accountService, IDatabase redisCache)
 {
     _context        = context;
     _accountService = accountService;
     _redisCache     = redisCache;
 }
 public TypeAssetRepo(SWDSlicingPieContext context)
 {
     _context = context;
 }
Ejemplo n.º 6
0
 public StackHoldersController(IStakeHolderService shService, SWDSlicingPieContext context, ISliceAssetService sliceService)
 {
     _shService    = shService;
     _context      = context;
     _sliceService = sliceService;
 }
Ejemplo n.º 7
0
 public StakeHolderRepository(SWDSlicingPieContext context)
 {
     _context = context;
 }
 public SliceAssetRepository(SWDSlicingPieContext context)
 {
     _context = context;
 }