Sök betalningar, fördela på mottagare under sökt period
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user