16 lines
199 B
Perl
16 lines
199 B
Perl
|
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;
|