23 lines
712 B
C#
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();
|
|
// }
|
|
|
|
}
|
|
} |