コード例 #1
0
        public bool AsociarHotelAdmin(int fkHotel, string correo)
        {
            try
            {
                var instance  = SqlDao.GetInstance();
                var operation = hotelMapper.GetAsociarHotelAdminStatement(fkHotel, correo);
                instance.ExecuteProcedure(operation);
            }
            catch (Exception e)
            {
                ManageException(e);
            }

            return(true);
        }