Files
BeWoPlaner/ReportImp/AkggMid/Service/CustomCustomerService.cs
2024-05-24 11:40:53 +02:00

23 lines
712 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using BeWo.Data.Access;
using BeWo.Data.Entities;
using BeWo.Service.DCEntityMapper;
using BeWo.Service.Plugins;
using BS.Shared.DataContracts.Compact;
namespace AkggMid.Service
{
public class CustomCustomerService : CustomerService
{
// public override List<CompactSupportConceptDC> GetAllActiveSupportConceptCostbearer(bool onlyApproved, bool onlyWithAssignedCostbearer, long employeeOid)
//{
// var liste = base.GetAllActiveSupportConceptCostbearer(onlyApproved, onlyWithAssignedCostbearer, employeeOid);
// return liste.Where(a => a.CustomerFullName.StartsWith("A")).ToList();
// }
}
}