You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
533 B
Dart
48 lines
533 B
Dart
|
|
import 'package:diplomaticquarterapp/core/service/base_service.dart';
|
|
|
|
import '../base_view_model.dart';
|
|
|
|
|
|
class RRTService extends BaseService{
|
|
|
|
}
|
|
|
|
|
|
class RRTViewModel extends BaseViewModel{
|
|
var _service = RRTService();
|
|
|
|
Future createRequest(){
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
Future getAllRequest(){
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
Future getRequestDetails(){
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
Future getAllQuestions(){
|
|
|
|
return null;
|
|
}
|
|
|
|
|
|
Future getCancelReasons(){
|
|
|
|
return null;
|
|
}
|
|
|
|
Future cancelRequest(){
|
|
|
|
return null;
|
|
}
|
|
} |