13 lines
311 B
C#
13 lines
311 B
C#
using Play.Catalog.Service.Dtos;
|
|
using Play.Catalog.Service.Entities;
|
|
|
|
namespace Play.Catalog.Service;
|
|
|
|
public static class Extensions
|
|
{
|
|
public static ItemDto AsDto(this Item item)
|
|
{
|
|
return new ItemDto(item.Id, item.Name, item.Description, item.Price, item.CreatedDate);
|
|
}
|
|
|
|
} |