Last change
on this file since 10355 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
|
Rev | Line | |
---|
[10013] | 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.