public async Task <ClosingFinal> ClosePosSessionAsync(PosSessionCloseRequest posSessionCloseRequest)
 {
     Repository = new PosSessionRepository();
     return(await Repository.ClosePoseSessionAsync(posSessionCloseRequest));
 }
 public async Task <PosSessionClose> GetPosSessionSummary(string ip_address)
 {
     Repository = new PosSessionRepository();
     return(await Repository.GetPosSessionSummary(ip_address));
 }
 public async Task <PosSession> GetPosSessionAsync(string ip_address)
 {
     Repository = new PosSessionRepository();
     return(await Repository.GetPosSessionDataAsync(ip_address));
 }