In progress commit

This commit is contained in:
Thomas Bloor 2019-07-02 15:21:01 +01:00
parent 71d4a83400
commit b00e9e838c
19 changed files with 478 additions and 79 deletions

View file

@ -0,0 +1,16 @@
package Pear::LocalLoop::Import::LCCCsv::Suppliers;
use Moo;
extends qw/Pear::LocalLoop::Import::LCCCsv/;
sub import {
my $self = shift;
}
sub _row_to_result {
my ( $self, $row ) = @_;
}
1;

View file

@ -0,0 +1,10 @@
package Pear::LocalLoop::Import::LCCCsv::Transactions;
use Moo;
extends qw/Pear::LocalLoop::Import::LCCCsv/;
sub import {
my $self = shift;
}
1;