Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
614B

  1. namespace Campaign_Tracker.Server.Municipalities;
  2. public sealed record MunicipalityProfileSaveResult(
  3. bool Saved,
  4. string? Error,
  5. MunicipalityProfile? Profile,
  6. bool IsNotFound = false)
  7. {
  8. public static MunicipalityProfileSaveResult Success(MunicipalityProfile profile) =>
  9. new(true, null, profile);
  10. public static MunicipalityProfileSaveResult Failure(string error) =>
  11. new(false, error, null);
  12. public static MunicipalityProfileSaveResult ProfileNotFound(string profileId) =>
  13. new(false, $"Municipality profile '{profileId}' not found.", null, IsNotFound: true);
  14. }

Powered by TurnKey Linux.