public GetSaleCountReportSerializeAction(IReportRestClient restClient, int shiftNumber, int tillNumber, string departmentId) : base("GetSaleCountReport") { _restClient = restClient; _shiftNumber = shiftNumber; _tillNumber = tillNumber; _departmentId = departmentId; }
public GetAllTillSerializeAction(IReportRestClient restClient) : base("GetAllTill") { _restClient = restClient; }
public GetAllDepartmentSerializeAction(IReportRestClient restClient) : base("GetAllDepartment") { _restClient = restClient; }
public GetFlashReportSerializeAction(IReportRestClient restClient) : base("GetFlashReport") { _restClient = restClient; }
public GetTillAuditReportSerializeAction(IReportRestClient restClient) : base("GetTillAuditReport") { _restClient = restClient; }
public ReportsSerializeManager(IReportRestClient reportRestClient) { _restClient = reportRestClient; }
public GetKickBackBalanceReportSerializeAction(IReportRestClient restClient, double kickBackPoints) : base("GetKickBackBalanceReportSerializeAction") { _restClient = restClient; _kickBackPoints = kickBackPoints; }
public GetReceiptHeaderSerializeAction(IReportRestClient restClient) : base("GetReceiptHeader") { _restClient = restClient; }