Beispiel #1
0
 public DepartmentsController(SalesWevMVCAtualContext context)
 {
     _context = context;
 }
Beispiel #2
0
        private readonly SalesWevMVCAtualContext _context;        //Dependência do Contexto

        public DepartmentService(SalesWevMVCAtualContext context) //construtor
        {
            _context = context;
        }
Beispiel #3
0
 public SellerService(SalesWevMVCAtualContext context)
 {
     _context = context;
 }
Beispiel #4
0
        private readonly SalesWevMVCAtualContext _context;        //Dependência do Contexto

        public SalesRecordServer(SalesWevMVCAtualContext context) //construtor
        {
            _context = context;
        }