Example #1
0
 public GarmentInternalNoteDto(GarmentInternNote internalNote, List <GarmentInvoiceInternNoteViewModel> internalNoteInvoices)
 {
     InternalNote = new InternalNoteDto(internalNote, internalNoteInvoices);
 }
Example #2
0
 public GarmentInternalNoteDto(int internalNoteId, string internalNoteNo, DateTimeOffset internalNoteDate, DateTimeOffset internalNoteDueDate, int supplierId, string supplierName, string supplierCode, int currencyId, string currencyCode, double currencyRate, List <InternalNoteInvoiceDto> internalNoteInvoices)
 {
     InternalNote = new InternalNoteDto(internalNoteId, internalNoteNo, internalNoteDate, internalNoteDueDate, supplierId, supplierName, supplierCode, currencyId, currencyCode, currencyRate, internalNoteInvoices);
 }