public VehicleCatService(IMessageDialog dialog, ILoggedInUserService l_user)
        {
            _dialog = dialog;
           // _table_name = _table_name.ToDbSchemaTable();
            m_logged_user = l_user.GetLoggedInUser();

        }
 public ExpenseTypeService(IMessageDialog dialog, ILoggedInUserService l_user)
 {
     _dialog       = dialog;
     m_logged_user = l_user.GetLoggedInUser();
 }
 public FuelStationService(IMessageDialog dialog, ILoggedInUserService l_user)
 {
     _dialog       = dialog;
     m_logged_user = l_user.GetLoggedInUser();
 }
Пример #4
0
 public VehicleOwnerService(IMessageDialog dialog, ILoggedInUserService l_user)
 {
     _dialog       = dialog;
     m_logged_user = l_user.GetLoggedInUser();
 }
Пример #5
0
 public CreditorService(IMessageDialog dialog, ILoggedInUserService l_user)
 {
     _dialog       = dialog;
     m_logged_user = l_user.GetLoggedInUser();
 }
 public LoggedInUserService()
 {
     _l_user = new dto_logged_user();
 }