Files
FA_WEB/SytelineSaAppEfDataModel/Dtos/DtoBase.cs
Piotr Kus c39cd3a473 * Translated Views
* Added UserName entity, dto and mapping
* Changed some Dtos to use BaseClass
2025-01-29 17:42:42 +01:00

18 lines
405 B
C#

namespace SytelineSaAppEfDataModel.Dtos
{
public class DtoBase
{
protected static string TranslateStatus(string status)
{
return status switch
{
"O" => "Zamówione",
"S" => "Zatrzymane",
"P" => "Planowane",
"C" => "Zakończone",
_ => status
};
}
}
}