Last change
on this file since 10206 was
10013,
checked in by spimming, 11 years ago
|
#1888:
- enabled transactions
- enabled tracing output
- set correct invoice data
- saving invoices
|
File size:
300 bytes
|
Line | |
---|
1 |
|
---|
2 | using System.IO;
|
---|
3 | namespace HeuristicLab.Services.Optimization.Billing.Interfaces {
|
---|
4 | public interface IInvoiceDao {
|
---|
5 | bool SaveDocument(string documentName, string content);
|
---|
6 | string LoadDocument(string documentName);
|
---|
7 | void LoadDocument(string documentName, Stream target);
|
---|
8 | }
|
---|
9 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.