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