コード例 #1
0
        public int getHotelIncome()
        {
            HotelTransactionRepository repository = new HotelTransactionRepository();

            return(repository.getHotelIncome());
        }
コード例 #2
0
        public HotelTransaction addHotelTransaction(HotelTransaction transaction)
        {
            HotelTransactionRepository repository = new HotelTransactionRepository();

            return(repository.addHotelTransaction(transaction));
        }
コード例 #3
0
        public dynamic getAllHotelTransaction()
        {
            HotelTransactionRepository repository = new HotelTransactionRepository();

            return(repository.getAllHotelTransaction());
        }
コード例 #4
0
        public int getLastID()
        {
            HotelTransactionRepository repository = new HotelTransactionRepository();

            return(repository.getLastID());
        }