Exemple #1
0
 public ContatoModel(MatrixContext ctx)
 {
     this.ctx = ctx;
 }
 public MatrixRepository(MatrixContext matrixContext)
 {
     this.matrixContext = matrixContext;
 }
 public MatricesSteps(MatrixContext matrixContext, PointsContext pointsContext)
 {
     _pointsContext = pointsContext;
     _matrixContext = matrixContext;
 }
Exemple #4
0
 public MatrixLoader()
 {
     _dbContext = new MatrixContext();
 }
 public MatrixRepository(MatrixContext context)
 {
     this.Context = context;
 }
 public PortfoliosController(MatrixContext context)
 {
     _context = context;
 }
 public PeopleController(MatrixContext context)
 {
     _context = context;
 }
 public MatrixRepository(MatrixContext matrixContext) => matrixes = matrixContext.Matrixes;