Interface ITransactionRepository
Interface for all transaction repository methods
Assembly: SImplic.Transaction.dll
Syntax
public interface ITransactionRepository
Methods
|
Improve this Doc
View Source
GetByBarcode(String)
Declaration
Transaction GetByBarcode(string barcode)
Parameters
Type |
Name |
Description |
System.String |
barcode |
|
Returns
|
Improve this Doc
View Source
GetByDate(DateTime, DateTime)
Declaration
IEnumerable<Transaction> GetByDate(DateTime from, DateTime to)
Parameters
Type |
Name |
Description |
System.DateTime |
from |
|
System.DateTime |
to |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Transaction> |
|
|
Improve this Doc
View Source
GetByNumber(String)
Declaration
IEnumerable<Transaction> GetByNumber(string number)
Parameters
Type |
Name |
Description |
System.String |
number |
|
Returns
Type |
Description |
System.Collections.Generic.IEnumerable<Transaction> |
|