diff --git a/CaseAccounting/CaseAccountingBusinessLogics/BusinessLogics/ReportCustomerLogic.cs b/CaseAccounting/CaseAccountingBusinessLogics/BusinessLogics/ReportCustomerLogic.cs index 4850fe0..f5e211f 100644 --- a/CaseAccounting/CaseAccountingBusinessLogics/BusinessLogics/ReportCustomerLogic.cs +++ b/CaseAccounting/CaseAccountingBusinessLogics/BusinessLogics/ReportCustomerLogic.cs @@ -52,11 +52,6 @@ namespace CaseAccountingBusinessLogic.BusinessLogics return result; } - public List GetLawyerHearing(List models) - { - throw new NotImplementedException(); - } - public List GetLawyersHearing(List lawyers) { var reportRecords = new List(); diff --git a/CaseAccounting/CaseAccountingContracts/BusinessLogicContracts/IReportCustomerLogic.cs b/CaseAccounting/CaseAccountingContracts/BusinessLogicContracts/IReportCustomerLogic.cs index 425e6e2..5dc559d 100644 --- a/CaseAccounting/CaseAccountingContracts/BusinessLogicContracts/IReportCustomerLogic.cs +++ b/CaseAccounting/CaseAccountingContracts/BusinessLogicContracts/IReportCustomerLogic.cs @@ -10,7 +10,7 @@ namespace CaseAccountingContracts.BusinessLogicContracts { public interface IReportCustomerLogic { - List GetLawyerHearing(List models); + List GetLawyersHearing(List models); List GetHearingSpecialization(ReportBindingModel model);