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

            Mapper = mapper ?? throw new ArgumentNullException(nameof(mapper));
        }
コード例 #3
0
 public ExpenditureTypeRepository(TendersContext context)
 {
     _context = context;
 }
コード例 #4
0
 public ObjectsController(TendersContext context)
 {
     _context = context;
 }