Exemple #1
0
 public TenderTypeRepository(TendersContext context)
 {
     _context = context;
 }
Exemple #2
0
        public TendersController(TendersContext context, IMapper mapper)
        {
            DbContext = context ?? throw new ArgumentNullException(nameof(context));

            Mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
        }
 public ExpenditureTypeRepository(TendersContext context)
 {
     _context = context;
 }
 public ObjectsController(TendersContext context)
 {
     _context = context;
 }