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