Sök betalningar, fördela på mottagare under sökt period

This commit is contained in:
2023-09-12 22:12:45 +02:00
parent 2b6e48c3ef
commit de6e196809
8 changed files with 356 additions and 16 deletions

View File

@ -23,4 +23,12 @@ public static class Extensions
}
else return false;
}
public static string adjustRight(this string value) {
if (!string.IsNullOrEmpty(value) && value.Length < 20)
{
return " ".Substring(0, 20 - value.Length)+value;
}
else return value;
}
}