public async Task <bool> StoreAutogiroAsync(Autogiro giro)
 {
     return(await _autogiroDataAccess.AddAsync(giro));
 }
 public async Task <bool> AddAsync(Autogiro giro)
 {
     return(await ExecuteAsync <Autogiro>("Autogiro_Add", giro));
 }