Exemple #1
0
        public async Task <ExistResult> ExistNonAssignmentReceiptAsync(string SessionKey,
                                                                       int CompanyId,
                                                                       DateTime ClosingFrom,
                                                                       DateTime ClosingTo)
        {
            return(await authorizationProcessor.DoAuthorizeAsync(SessionKey, async token =>
            {
                var result = await receiptProcessor.ExistNonAssignmentAsync(CompanyId, ClosingFrom, ClosingTo, token);

                return new ExistResult
                {
                    ProcessResult = new ProcessResult {
                        Result = true
                    },
                    Exist = result,
                };
            }, logger));
        }
Exemple #2
0
 public async Task <bool> ExistNonAssignmentReceipt(ClosingSearch option, CancellationToken token)
 => await receiptProcessor.ExistNonAssignmentAsync(option.CompanyId, option.ClosingAtFrom, option.ClosingAtTo, token);