23 lines
433 B
C#
23 lines
433 B
C#
using BeWo.Service.Plugins;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VisionReports
|
|
{
|
|
public class CustomCustomerService : CustomerService
|
|
{
|
|
protected override string GetBrushForNearlyExpiredSupportConcept()
|
|
{
|
|
return "#FFFFFF";
|
|
}
|
|
protected override string GetBrushForExpiredSupportConcept()
|
|
{
|
|
return "#FAF200";
|
|
}
|
|
|
|
}
|
|
}
|