Example #1
0
 public static async Task <Response> Application(SmartClient client)
 {
     return(await client.SendAsync(Commands.SaveApplication));
 }
Example #2
0
 public static async Task <Response> ApplicationByLendercode(SmartClient client)
 {
     return(await client.SendAsync(Commands.GetApplicationByCode));
 }
Example #3
0
 public static async Task <Response> AllLenders(SmartClient client)
 {
     return(await client.SendAsync(Commands.GetLenders));
 }
Example #4
0
 public static async Task <Response> CurrentLender(SmartClient client)
 {
     return(await client.SendAsync(Commands.GetCurrentLender));
 }
Example #5
0
 public static async Task <Response> ApplicationByFullName(SmartClient client)
 {
     return(await client.SendAsync(Commands.GetApplicationByFullName));
 }