Files
Piotr Kus 8a17423c9e * Added TranslatedStatus
* Added new status
* Managed CustomerOrder view
2025-02-02 08:42:35 +01:00

19 lines
443 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",
"F" => "Wypełnione",
_ => status
};
}
}
}