public RenteeEntryViewModel()
        {
            CleanUp();
            _renteeService = new RenteeService();

            CheckRoles();

            RenteeRepresenteeViewModel = RepresenteeUC;

            LoadTitles();
            GetLiveRentees();

            RenteeText = "ተከራይ ማስገቢያ";
        }
Beispiel #2
0
 public RenteeController(IRenteeService renteeService)
 {
     _renteeService = renteeService;
 }