13 lines
418 B
C#
13 lines
418 B
C#
namespace Netina.Domain.Extensions;
|
|
|
|
public static class BrandExtension
|
|
{
|
|
public static string GetWebSiteUrl(this Brand product)
|
|
=> $"/brands/{product.Id}/{product.Slug}";
|
|
|
|
public static string GetWebSiteUrl(this BrandSDto product)
|
|
=> $"/brands/{product.Id}/{product.Slug}";
|
|
|
|
public static string GetWebSiteUrl(this BrandLDto product)
|
|
=> $"/brands/{product.Id}/{product.Slug}";
|
|
} |