a little change
This commit is contained in:
parent
42dfea4048
commit
b6d4be7f97
|
|
@ -1,7 +1,7 @@
|
|||
import '../models/instruction_log.dart';
|
||||
import 'interface/IRepository.dart';
|
||||
|
||||
class InstructionLogRepository implements Repository<InstructionLog> {
|
||||
class LocalInstructionLogRepository implements Repository<InstructionLog> {
|
||||
final List<InstructionLog> _logs = [
|
||||
InstructionLog(
|
||||
id: '1',
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ void main() {
|
|||
|
||||
final Repository<Organization> organizationRepository = LocalOrganizationRepository();
|
||||
final Repository<Worker> workerRepository = LocalWorkerRepository();
|
||||
final Repository<InstructionLog> instructionLogRepository = InstructionLogRepository();
|
||||
final Repository<InstructionLog> instructionLogRepository = LocalInstructionLogRepository();
|
||||
|
||||
runApp(
|
||||
// "Предоставляем" наши провайдеры всему дереву виджетов
|
||||
|
|
|
|||
Loading…
Reference in New Issue