Добавление первых классов отчётов у клиента и кассира.
This commit is contained in:
parent
65e07519a4
commit
526c9e1002
@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankYouBankruptContracts.BindingModels
|
||||||
|
{
|
||||||
|
public class ReportBindingModel
|
||||||
|
{
|
||||||
|
public string FileName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public DateTime? DateFrom { get; set; }
|
||||||
|
|
||||||
|
public DateTime? DateTo { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
using BankYouBankruptContracts.BindingModels;
|
||||||
|
using BankYouBankruptContracts.ViewModels;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IReportCashierLogic
|
||||||
|
{
|
||||||
|
List<ReportCashierViewModel>? GetAccounts(ReportBindingModel model);
|
||||||
|
|
||||||
|
//Сохранение отчёта по счетам в файл-Word
|
||||||
|
void SaveAccountsToWordFile(ReportBindingModel model);
|
||||||
|
|
||||||
|
//Сохранение отчёта по счетам в файл-Excel
|
||||||
|
void SaveAccountsToExcelFile(ReportBindingModel model);
|
||||||
|
|
||||||
|
//Сохранение отчёта по счетам в файл-Pdf
|
||||||
|
void SaveAccountsToPdfFile(ReportBindingModel model);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,25 @@
|
|||||||
|
using BankYouBankruptContracts.BindingModels;
|
||||||
|
using BankYouBankruptContracts.SearchModels;
|
||||||
|
using BankYouBankruptContracts.ViewModels;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankYouBankruptContracts.BusinessLogicsContracts
|
||||||
|
{
|
||||||
|
public interface IReportClientLogic
|
||||||
|
{
|
||||||
|
List<ReportClientViewModel>? GetCards(ReportBindingModel model);
|
||||||
|
|
||||||
|
//Сохранение отчёта по картам в файл-Word
|
||||||
|
void SaveCardsToWordFile(ReportBindingModel model);
|
||||||
|
|
||||||
|
//Сохранение отчёта по картам в файл-Excel
|
||||||
|
void SaveCardsToExcelFile(ReportBindingModel model);
|
||||||
|
|
||||||
|
//Сохранение отчёта по картам в файл-Pdf
|
||||||
|
void SaveCardsToPdfFile(ReportBindingModel model);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankYouBankruptContracts.ViewModels
|
||||||
|
{
|
||||||
|
public class ReportCashierViewModel
|
||||||
|
{
|
||||||
|
public int AccountId { get; set; }
|
||||||
|
|
||||||
|
public string ClientName { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public string TypeOperation { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public double SumOperation { get; set; }
|
||||||
|
|
||||||
|
public DateTime DateComplite { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,19 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankYouBankruptContracts.ViewModels
|
||||||
|
{
|
||||||
|
public class ReportClientViewModel
|
||||||
|
{
|
||||||
|
public int CardId { get; set; }
|
||||||
|
|
||||||
|
public string TypeOperation { get; set; } = string.Empty;
|
||||||
|
|
||||||
|
public double SumOperation { get; set; }
|
||||||
|
|
||||||
|
public DateTime DateComplite { get; set; }
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user