using CSharpFunctionalExtensions;
using System.Runtime.Serialization;
public static void Main()
Console.WriteLine("Hello World");
var value1 = "pidTDUP_D_GREEN3PB";
Validate(value1, nameof(value1));
var value2 = "pidTDUP_D_GREEN3P3PE";
Validate(value2, nameof(value2));
var value3 = "pidTDUP_D_GREEN3PB ";
Validate(value3, nameof(value3));
var value4 = " pidTDUP_D_GREEN3P3PE";
Validate(value4, nameof(value4));
public static void Validate(string Value, string nameOfInput)
var result = IsValid(Value);
Console.WriteLine(nameOfInput);
throw new ValidationException(result.Error);
public static Result IsValid(string value)
return Result.Failure("The Product ID value is NULL");
if (!value.StartsWith("pid"))
return Result.Failure("The pid identifier is not in the productid");
Array validChannels = Enum.GetValues(typeof(ProductChannels));
foreach (var productChannel in validChannels)
if (value.EndsWith(CleanString(productChannel?.ToString() ?? string.Empty)))
return Result.Failure($"The channel is not present in the productid - input: {value}");
private static string CleanString(string originalValue)
return originalValue.Replace("_", "");
public enum ProductChannels
[EnumMember(Value = "None")]
[EnumMember(Value = "1st_Party_ECommerce")]
[EnumMember(Value = "1st_Party_B2B")]
[EnumMember(Value = "3rd_Party_B2B")]
[EnumMember(Value = "3rd_Party_Retail")]
[EnumMember(Value = "3rd_Party_Ecommerce")]
[EnumMember(Value = "Customer_Service")]