public void ShouldCreateNewNegotiationSupplierQItem(long id, long columnId, long?headerId, int?activityId, string value, long itemNumber)
        {
            NegotiationSupplierQuantityTableItem negotiationS = new NegotiationSupplierQuantityTableItem();

            NegotiationSupplierQuantityTableItem negotiationSupplier = new NegotiationSupplierQuantityTableItem(id, columnId, headerId, activityId, value, itemNumber);

            Assert.Equal(columnId, negotiationSupplier.ColumnId);
            Assert.Equal(value, negotiationSupplier.Value);
            Assert.Equal(headerId, negotiationSupplier.TenderFormHeaderId);
            Assert.Equal(activityId, negotiationSupplier.ActivityTemplateId);
            Assert.Equal(itemNumber, negotiationSupplier.ItemNumber);
        }
Пример #2
0
 public async Task UpdateNegotiationSupplierQuantityTableItemAsync(NegotiationSupplierQuantityTableItem NegotiationSecondStageQTitem)
 {
     // _context.NegotiationSupplierQuantityTableItems.Update(NegotiationSecondStageQTitem);
 }